Created
May 19, 2017 01:19
-
-
Save phg1024/85ae7e294b92cd5f44298d8be8fe135f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# regularize filenames | |
for f in `ls *.png`; do | |
echo $f | |
filename=`echo "$f" | cut -d'.' -f1` | |
echo $filename | |
mv $f $filename.png | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment