zsh/rc/run-help.rc

8 lines
87 B
Plaintext
Raw Normal View History

2018-03-16 12:02:58 +01:00
function run-help-sudo {
if [ $# -eq 0 ]; then
man sudo
else
man $1
fi
}