mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-07 17:36:22 +00:00
5 lines
108 B
Bash
Executable file
5 lines
108 B
Bash
Executable file
#!/bin/sh
|
|
for i in $@; do
|
|
filename=$(echo $i | sed 's/podman/docker/g')
|
|
echo .so man1/$i > $filename
|
|
done
|