Sometimes is needed to have all files in a folder in the same case. Here’s a small script to rename all files in the folder to lower case: View Code BASH1 for i in *; do mv $i `echo $i | tr [:upper:] [:lower:]`; done
Sometimes is needed to have all files in a folder in the same case. Here’s a small script to rename all files in the folder to lower case: View Code BASH1 for i in *; do mv $i `echo $i | tr [:upper:] [:lower:]`; done
Recent Comments