Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: SUGGESTION: kill -l could show numbers, too



Christian =?iso-8859-1?Q?H=F6ltje?= wrote:
> I have a suggestion for the kill builtin:
> 
> It would be nice if when you did '-l' to show the list of signal
> that it show the signal number.

Not quite as convenient, but try this function:

kill-l() {
  for i in {1..$#signals}; do
    print $((i-1))\) SIG$signals[$i]
  done | pr -t5
}

-- 
Peter Stephenson <pws@xxxxxxx>                  Software Engineer
CSR PLC, Churchill House, Cambridge Business Park, Cowley Road
Cambridge, CB4 0WZ, UK                          Tel: +44 (0)1223 692070


**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.

This footnote also confirms that this email message has been swept by
MIMEsweeper for the presence of computer viruses.

www.mimesweeper.com
**********************************************************************



Messages sorted by: Reverse Date, Date, Thread, Author