bash-scripts/paths_to_lowercase.sh

5 lines
155 B
Bash
Raw Permalink Normal View History

2019-06-11 14:10:12 +02:00
#!/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