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...
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/...
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;...
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...
««
«
1
2
»
»»