mirror of
https://github.com/ff4500/utilities.git
synced 2026-07-01 11:47:04 -05:00
12 lines
275 B
Bash
Executable File
12 lines
275 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# CP and rename files in place, adding site specific extensions
|
|
|
|
for f in *.png; do
|
|
cp "$f" "${f%.png}-x-small.png"
|
|
cp "$f" "${f%.png}-small.png"
|
|
cp "$f" "${f%.png}-medium.png"
|
|
cp "$f" "${f%.png}-large.png"
|
|
cp "$f" "${f%.png}-x-large.png"
|
|
done
|