zsh/rc/run-help.rc

8 lines
87 B
Plaintext

function run-help-sudo {
if [ $# -eq 0 ]; then
man sudo
else
man $1
fi
}