1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-26 22:10:45 +02:00

Jérôme Pouiller: 28351: new help functions

This commit is contained in:
Peter Stephenson 2010-10-18 09:33:42 +00:00
parent 467cd12e13
commit 76351e9b69
4 changed files with 22 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-10-18 Peter Stephenson <pws@csr.com>
* Jérôme Pouiller: 28351: Functions/Misc/run-help-openssl,
Functions/Misc/run-help-sudo: new help functions.
2010-10-17 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Mikael: 28356: Src/Zle/zle_refresh.c: don't increment old
@ -13763,5 +13768,5 @@
*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.5108 $
* $Revision: 1.5109 $
*****************************************************

View File

@ -14,7 +14,9 @@ regexp-replace
relative
run-help
run-help-git
run-help-openssl
run-help-p4
run-help-sudo
run-help-svk
run-help-svn
sticky-note

View File

@ -0,0 +1,7 @@
if [ $# -eq 0 ]; then
man openssl
else
man $1
fi

View File

@ -0,0 +1,7 @@
if [ $# -eq 0 ]; then
man sudo
else
man $1
fi