mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-08 18:05:41 +00:00
6 lines
135 B
Bash
Executable file
6 lines
135 B
Bash
Executable file
#!/bin/sh
|
|
for i in $@; do
|
|
b=$(basename $i)
|
|
filename=$(echo $i | sed 's/podman/docker/g')
|
|
echo .so man1/$b > $filename
|
|
done
|