Created
May 21, 2017 16:58
-
-
Save nytr0gen/2c7e33e3263d787e316010ea7b6cd47d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# facebook has a weird format for naming images you download | |
# it should be timestamp first so you can sort them | |
# but no, they have a weird id first | |
# something like {rnd}_{timestamp}_{rnd}_o.jpg | |
ls *.jpg | awk -F_ '{print $2}' | xargs -I{} bash -c 'mv *{}*.jpg {}.jpg' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment