about summary refs log tree commit diff
path: root/Functions/Misc/run-help-podman
blob: 64d9cd83f17833c8939c2f97951bd34c1d636980 (plain) (blame)
1
2
3
4
5
6
7
8
9
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