1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-03 10:21:46 +02:00

43946: call run-help for the command given to sudo

This commit is contained in:
Samir Benmendil 2020-12-11 17:20:45 +09:00 committed by Jun-ichi Takimoto
parent 5a9e632638
commit f493b438fd
2 changed files with 6 additions and 1 deletions

View file

@ -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>
* unposted: Doc/Zsh/compsys.yo: index compprefuncs and comppostfuncs

View file

@ -2,6 +2,6 @@
if [ $# -eq 0 ]; then
man sudo
else
man $1
run-help $1
fi