Skip to content

Instantly share code, notes, and snippets.

@nytr0gen
Created May 21, 2017 16:58
Show Gist options
  • Save nytr0gen/2c7e33e3263d787e316010ea7b6cd47d to your computer and use it in GitHub Desktop.
Save nytr0gen/2c7e33e3263d787e316010ea7b6cd47d to your computer and use it in GitHub Desktop.
# 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