mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-10 12:40:58 +02:00
43946: call run-help for the command given to sudo
This commit is contained in:
parent
5a9e632638
commit
f493b438fd
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2020-12-11 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
|
||||||
|
|
||||||
|
* Samir Benmendil: 43946: Functions/Misc/run-help-sudo: call
|
||||||
|
run-help (instead of man) for the command given to sudo
|
||||||
|
|
||||||
2020-12-05 Bart Schaefer <schaefer@zsh.org>
|
2020-12-05 Bart Schaefer <schaefer@zsh.org>
|
||||||
|
|
||||||
* unposted: Doc/Zsh/compsys.yo: index compprefuncs and comppostfuncs
|
* unposted: Doc/Zsh/compsys.yo: index compprefuncs and comppostfuncs
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
if [ $# -eq 0 ]; then
|
if [ $# -eq 0 ]; then
|
||||||
man sudo
|
man sudo
|
||||||
else
|
else
|
||||||
man $1
|
run-help $1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue