Skip to content

Instantly share code, notes, and snippets.

@rdeavila
Last active March 3, 2017 18:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rdeavila/3c2d40ec157c4fd87177 to your computer and use it in GitHub Desktop.
Save rdeavila/3c2d40ec157c4fd87177 to your computer and use it in GitHub Desktop.
Renomear fotos aleatoriamente
#!/bin/bash
for fname in `ls *.jpg`
do
mv -nv ${fname} $RANDOM.jpg
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment