This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Convert filenames to lowercase | |
# and replace characters recursively | |
##################################### | |
if [ -z $1 ];then echo Give target directory; exit 0;fi | |
find "$1" -depth -name '*' | while read file ; do | |
directory=$(dirname "$file") | |
oldfilename=$(basename "$file") |