mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-21 10:09:30 -07:00
4 lines
93 B
Bash
4 lines
93 B
Bash
find . -name '*.gif' \
|
|
| awk 'BEGIN{ a=0 }{ printf "mv \"%s\" %d.gif\n", $0, a++ }' \
|
|
| bash
|