Merge pull request #216 from rhatdan/docker

Add support for mimicing docker CLI
This commit is contained in:
Daniel J Walsh
2018-01-18 14:51:46 -05:00
committed by GitHub
3 changed files with 17 additions and 1 deletions

5
docs/dckrman.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
for i in $@; do
filename=$(echo $i | sed 's/podman/docker/g')
echo .so man1/$i > $filename
done