1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-06-14 08:08:10 +02:00
zsh/Functions/Misc/run-help-docker

9 lines
244 B
Text

if [[ $# == 0 ]]
then
man docker
elif [[ $# > 1 && $1 == (builder|checkpoint|config|container|context|image|manifest|network|node|plugin|secret|service|stack|swarm|system|trust|volume) ]]
then
man docker-$1-$2
else
man docker-$1
fi