mirror of
https://github.com/containers/podman.git
synced 2025-05-19 16:18:51 +08:00
7 lines
135 B
Bash
Executable File
7 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
|