Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
run-help-{sudo,openssl}
- X-seq: zsh-workers 28351
- From: Jérôme Pouiller <jezz@xxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: run-help-{sudo,openssl}
- Date: Fri, 15 Oct 2010 18:11:22 +0200
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- Organization: Sysmic
Dear Zsh Workers,
You will find in attachment functions run-help-sudo and run-help-openssl
allowing to run smartly run-help on commands sudo and openssl.
They work in same way than run-help-{git,svn,svk}.
(While I am not subscribed on ML, please include my mail in replies)
--
Jérôme Pouiller (Jezz)
if [ $# -eq 0 ]; then
man sudo
else
man $1
fi
if [ $# -eq 0 ]; then
man openssl
else
man $1
fi
Messages sorted by:
Reverse Date,
Date,
Thread,
Author