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 : |
#compdef pflags pcred pmap pldd psig pstack pfiles pwdx pstop prun pwait # If given the `-m <pattern>' option, this tries to complete only pids # of processes whose command line match the `<pattern>'. local out pids list expl match desc listargs all nm ret=1 _tags processes || return 1 if [[ "$1" = -m ]]; then all=() match="(*[[:blank:]]|)${PREFIX}[0-9]#${SUFFIX}[[:blank:]]*(/|[[:blank:]]-(#c,1))${2}([[:blank:]]*|)" shift 2 elif [[ "$PREFIX$SUFFIX" = ([%-]*|[0-9]#) ]]; then all=() match="(*[[:blank:]]|)${PREFIX}[0-9]#${SUFFIX}[[:blank:]]*" else all=(-P "$IPREFIX" -S "$ISUFFIX" -U) match="*[[:blank:]]*[[/[:blank:]]$PREFIX*$SUFFIX*" nm="$compstate[nmatches]" fi while _tags; do if _requested processes; then while _next_label processes expl 'process ID'; do out=( "${(@f)$(_call_program $curtag ps 2>/dev/null)}" ) desc="$out[1]" out=( "${(@M)out[2,-1]:#${~match}}" ) if [[ "$desc" = (#i)(|*[[:blank:]])pid(|[[:blank:]]*) ]]; then pids=( "${(@)${(@M)out#${(l.${#desc[1,(r)(#i)[[:blank:]]pid]}..?.)~:-}[^[:blank:]]#}##*[[:blank:]]}" ) else pids=( "${(@)${(@M)out##[^0-9]#[0-9]#}##*[[:blank:]]}" ) fi if zstyle -T ":completion:${curcontext}:$curtag" verbose; then list=( "${(@Mr:COLUMNS-1:)out}" ) desc=(-ld list) else desc=() fi compadd "$@" "$expl[@]" "$desc[@]" "$all[@]" -a pids && ret=0 done fi (( ret )) || break done if [[ -n "$all" ]]; then zstyle -s ":completion:${curcontext}:processes" insert-ids out || out=menu case "$out" in menu) compstate[insert]=menu ;; single) [[ $compstate[nmatches] -ne nm+1 && $compstate[insert] != menu ]] && compstate[insert]= ;; *) [[ ${#:-$PREFIX$SUFFIX} -gt ${#compstate[unambiguous]} ]] && compstate[insert]=menu ;; esac fi return ret