-
Recent Posts
500 px
My Flickr Stream
www.flickr.com/photos/61678087@N00
This is a Flickr badge showing public photos and videos from AjoPaul.
Category Archives: script
Shell : Remove blank spaces from filenames
Just like I last posted the below script can be used to remove blank spaces from file names. #!/bin/sh find . -name “* *”|while read file do target=`echo “$file”|tr -s ‘ ‘ ‘_’` mv “$file” “$target” done
Shell script: Rename extensions of multiple files.
Shell provides easy way of renaming multiple files. Eg: your directory has ’01 – Song1.mp3′, ’02 – Song2.mp3′, ’03 – Song3.mp3′ and you want to rename them to .txt. use the following commane. $rename mp3 txt *.mp3 The above command … Continue reading