Pario TechnoBlob
About Posts

Tag: rename

Rename AVCHD files using Exiftools Simple bash script to rename AVCHD/MTS/MOV files to match their recording date and time. <br /> #!/bin/bash<br /> if [ -z "$1" ]; then<br /> echo...
Jul 17, 2012 11:47PM
Remove white space from file names This is a one liner to remove white space in filenames using a linux console # rename 'y/ //' * You could also do this the other way, remove underscore with space # rename 'y/...
Nov 9, 2011 11:10PM
Rename file name suffix to uppercase or lowercase This is a little oneliner to rename a files suffix from/to uppercase/lowercase. Rename a jpg suffix to JPG in the current folder # find -name "*.jpg" | while read a;...
Oct 24, 2008 8:12PM
Rename files in a folder to lower-case using perl This is a simple oneliner to rename files to lower-case using perl # perl -e 'rename($, lc) || warn "$: $!\n" for @ARGV' * You can also do this recusively using find...
Oct 13, 2008 10:12AM
«« « 1 2 » »»
Posts About
© 2007-2020 Pario TechnoBlob
Powered by Axiom