1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-06-18 21:38:03 +02:00
zsh/Functions/Misc/run-help-podman

9 lines
210 B
Text

if [[ $# == 0 ]]
then
man podman
elif [[ $# > 1 && $1 == (container|generate|healthcheck|image|kube|machine|manifest|network|pod|secret|system|volume) ]]
then
man podman-$1-$2
else
man podman-$1
fi