Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
zsh /
functions /
Misc /
[ HOME SHELL ]
Name
Size
Permission
Action
add-zle-hook-widget
5.25
KB
-rw-r--r--
add-zsh-hook
1.9
KB
-rw-r--r--
allopt
783
B
-rw-r--r--
checkmail
817
B
-rwxr-xr-x
colors
3.34
KB
-rw-r--r--
getjobs
827
B
-rw-r--r--
harden
96
B
-rwxr-xr-x
is-at-least
2.23
KB
-rw-r--r--
mere
2.02
KB
-rw-r--r--
nslookup
1.11
KB
-rw-r--r--
promptnl
3.23
KB
-rw-r--r--
regexp-replace
1.01
KB
-rw-r--r--
relative
888
B
-rw-r--r--
run-help
3
KB
-rwxr-xr-x
run-help-git
144
B
-rw-r--r--
run-help-ip
862
B
-rwxr-xr-x
run-help-openssl
59
B
-rw-r--r--
run-help-p4
78
B
-rw-r--r--
run-help-sudo
56
B
-rw-r--r--
run-help-svk
52
B
-rw-r--r--
run-help-svn
52
B
-rw-r--r--
sticky-note
4.59
KB
-rwxr-xr-x
tetris
5.31
KB
-rw-r--r--
tetriscurses
10.76
KB
-rw-r--r--
xtermctl
4.09
KB
-rw-r--r--
zargs
8.73
KB
-rw-r--r--
zcalc
11.92
KB
-rwxr-xr-x
zed
4
KB
-rwxr-xr-x
zkbd
7.12
KB
-rwxr-xr-x
zmathfuncdef
2.23
KB
-rw-r--r--
zmv
11.14
KB
-rw-r--r--
zrecompile
6.04
KB
-rw-r--r--
zstyle+
1.24
KB
-rw-r--r--
ztodo
1.37
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mere
# read a man page setopt localoptions extendedglob local manual="$1" col=col terminal=man magic line # /usr/bin/col on SunOS 4 doesn't support -x. if [[ -x /usr/5bin/col ]]; then col=/usr/5bin/col; fi # SunOS 5 has no `man' terminal. if [[ -d /usr/share/lib/nterm && ! -e /usr/share/lib/nterm/tab.$terminal ]]; then terminal=lp; fi # HP-UX has no `man' terminal. if [[ -d /usr/share/lib/term && ! -e /usr/share/lib/term/tab$terminal ]]; then terminal=lp; fi # IRIX has no `man' terminal. if [[ -d /usr/lib/nterm && ! -e /usr/lib/nterm/tab.$terminal ]]; then terminal=lp; fi # Unixware has no `man' terminal. if [[ -d /usr/ucblib/doctools/nterm && ! -e /usr/ucblib/doctools/nterm/tab.$terminal ]]; then terminal=lp; fi # Solaris has SGML manuals. if [[ -f /usr/lib/sgml/sgml2roff ]] && [[ "$(read -er < $manual)" = "<!DOCTYPE"* ]]; then /usr/lib/sgml/sgml2roff $manual | { read -r line if [[ $line = ".so "* ]]; then # There is no cascading .so directive. # On Solaris 7, at least. /usr/lib/sgml/sgml2roff ${line#.so } else print -lr - "$line" cat fi } else read -u0 -k 2 magic < $manual case $magic in $'\037\235') zcat $manual;; $'\037\213') gzip -dc $manual;; *) cat $manual;; esac fi | ( # cd is required to work soelim called by nroff. case $manual in */man/man*/*) cd ${manual:h:h};; */man/sman*/*) cd ${manual:h:h};; esac read -r line # The first line beginning with '\" shows preprocessors. # Unknown preprocessors is ignored. if [[ $line = "'\\\" "* ]]; then typeset -A filter filter=( e neqn g grap p pic r refer t tbl v vgrind ) eval ${(j:|:)${${(s::)line#\'\\\" }//(#m)?/$filter[$MATCH]}} elif [[ $line = "'\\\"! "* ]]; then typeset -A filter filter=( eqn neqn ) eval ${(j:|:)${${${${(s:|:)line#\'\\\"! }# ##}% ##}//(#m)*/$filter[$MATCH]}} else print -lr - "$line" cat fi | nroff -T$terminal -man | $col -x ) | ${=MANPAGER:-${PAGER:-/usr/bin/pager}} -s
Close