mirror of
https://github.com/containers/podman.git
synced 2025-05-19 08:07:10 +08:00
6 lines
108 B
Bash
Executable File
6 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
|