Renaming a set of files
# rename all .jpeg files to .jpg for file in *.jpeg; do mv $file ${file%.jpeg}.jpg; done # make all the files in the current directory… Read More »Renaming a set of files
# rename all .jpeg files to .jpg for file in *.jpeg; do mv $file ${file%.jpeg}.jpg; done # make all the files in the current directory… Read More »Renaming a set of files
#!/usr/bin/perl # # It’s my first script in Perl, so be lenient. # # This script works only for TV shows and their subtitles !… Read More »Rename subtitles script