Server IP : 51.89.169.208 / Your IP : 216.73.216.94 Web Server : Apache System : Linux ns3209505.ip-198-244-202.eu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : yellowleaf ( 1019) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/proc/thread-self/root/usr/share/zsh/5.5.1/functions/ |
Upload File : |
# 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