Add 'paths_to_lowercase.sh'
This commit is contained in:
parent
9af0a6e3f5
commit
50a6457347
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Rename all the files/dirs in the current directory to lower case.
|
||||||
|
|
||||||
|
for i in $( ls | grep [A-Z] ); do mv -i $i `echo $i | tr 'A-Z' 'a-z'`; done
|
Loading…
Reference in New Issue