mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-01 05:16:05 +01:00
Jérôme Pouiller: 28351: new help functions
This commit is contained in:
parent
467cd12e13
commit
76351e9b69
4 changed files with 22 additions and 1 deletions
|
@ -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 $
|
||||
*****************************************************
|
||||
|
|
|
@ -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
|
||||
|
|
7
Functions/Misc/run-help-openssl
Normal file
7
Functions/Misc/run-help-openssl
Normal file
|
@ -0,0 +1,7 @@
|
|||
|
||||
if [ $# -eq 0 ]; then
|
||||
man openssl
|
||||
else
|
||||
man $1
|
||||
fi
|
||||
|
7
Functions/Misc/run-help-sudo
Normal file
7
Functions/Misc/run-help-sudo
Normal file
|
@ -0,0 +1,7 @@
|
|||
|
||||
if [ $# -eq 0 ]; then
|
||||
man sudo
|
||||
else
|
||||
man $1
|
||||
fi
|
||||
|
Loading…
Reference in a new issue