Bulk rename in Unix
Wednesday, October 31, 2007
To change .htm files to .html
$for file in *.htm ; do mv $file `echo $file | sed 's/\(.*\.\)htm/\1html/'` ; done
Posted bySeshu Karthick at 12:50 PM
Labels: linux
To change .htm files to .html
$for file in *.htm ; do mv $file `echo $file | sed 's/\(.*\.\)htm/\1html/'` ; done
Posted bySeshu Karthick at 12:50 PM
Labels: linux