Using Bash text replacement for mass rename

Bash has some very powerful text replacement options called parameter expansion. This allowed me to easy mass rename a bunch of files that were .avi.mp4 to .mp4

for i in *.avi.mp4 ; do mv "$i" "${i%.avi.mp4}.mp4" ; done;

With these tools you have the ability to manipulate files very easily.



Note: Replies will be formatted with PHP Markdown Extra syntax.

Name: Email (Not Required):
 
Logged IP: 54.226.226.30
To prevent spam please submit by clicking the kitten: