MOON
Server: Apache/2.2.34 (Unix) mod_ssl/2.2.34 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 FrontPage/5.0.2.2635
System: Linux server.asjudinet.com 2.6.32-042stab141.3 #1 SMP Fri Nov 15 22:45:34 MSK 2019 i686
User: asjudine (504)
PHP: 5.2.17
Disabled: NONE
Upload Files
File: //proc/3/root/usr/share/zsh/4.2.6/functions/getjobs
# Call this from the preexec function like so:
#   preexec() {
#	  getjobs "${(z)2}"  # Use "${(z)1}" prior to zsh-4.0.1
#   }
setopt localoptions noshwordsplit noksharrays
local texts
case $1 in
    fg|bg) shift; [[ -n $1 ]] || set -- %% ;;
    %*) ;;
    *) return 0 ;;
esac
repeat $#
do
    # This case statement emulates jobs.c:getjob()
    case $1 in
	[\;\&\|]|\|\||\&\&) break ;;
	%(|[%+])) 1=${(k)jobstates[(r)*:+:*]} ;;
	%-) 1=${(k)jobstates[(r)*:-:*]} ;;
	%<->) 1=${1#%} ;;
	%[?]*) 1=${${(Ok)jobtexts[(R)*${1#%[?]}*]}[1]} ;;
	*) 1=${${(Ok)jobtexts[(R)$1*]}[1]} ;;
    esac
    [[ -n $1 ]] && texts=($texts ${jobtexts[$1]})
    shift
done
# Remove the "-s" below if you'd prefer that this just report
# what jobs are being affected rather than modify the history
(( $#texts )) && print -s ${(j:; :)texts} "$*"
return 0