Ok, so I have a digital photo frame that I have, and view my photos from a USB. Everything works fine, however, there is no way to display the pictures randomly. So, I have to watch my pictures in order, which is fine but not really what I want.
I am wondering if there is a way to have my .jpg pictures, that I view to be batch renamed, but renamed randomly? Be it adding random characters to the start of the name or replacing the characters before .jpg
Thank you for your time and answers.
I suppose the following could work. Assuming the prefix of your filenames is "DSC" you can use the following command in the terminal (untested!)
This uses the perl rename command to match regular expressions and replace them. In this case, we are substituting "DSC" with a random number in the filename for all .jpg files. Change the "DSC" to whatever your photos' prefix is.
another method (also untested) is with a bash script:
This will shuffle all
jpg
files to random names.Following one line script works for file names with white chars.