Last active
March 29, 2023 13:04
-
-
Save sahildev001/0467296537fd843c29372a7590bfbc79 to your computer and use it in GitHub Desktop.
Shell script for remove whitespace from file name
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
find . -depth -name '* *' | while read fname | |
do | |
new_fname=`echo $fname | tr " " "_"` | |
if [ -e $new_fname ] | |
then | |
echo "File $new_fname already exists. Not replacing $fname" | |
else | |
echo "Creating new file $new_fname to replace $fname" | |
mv "$fname" $new_fname | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment