Add completions for trap and jobs

darcs-hash:20051217215926-ac50b-3078bbc64adfe19d17579a886a9e2ae7b0c594dd.gz
This commit is contained in:
axel 2005-12-18 07:59:26 +10:00
parent b8ea709c1e
commit 00be44a69a
2 changed files with 10 additions and 0 deletions

View file

@ -0,0 +1,6 @@
complete -c jobs -s p -l pid -d 'Show the process id of each process in the job'
complete -c jobs -s g -l group -d 'Show group id of job'
complete -c jobs -s c -l command -d 'Show commandname of each job'
complete -c jobs -s l -l last -d 'Show status for last be started'

View file

@ -0,0 +1,4 @@
complete -c trap -s l -l list-signals -d 'Display names of all signals'
complete -c trap -s p -l print -d 'Display all currently defined trap handlers'
complete -c trap -s h -l help -d 'Display help and exit'