Remove Invalid characters from a filename

To remove invalid characters like ? & etc. in a file name, use this simple script;

touch reminvchar.sh
vim reminvchar.sh

insert the following lines of code

for i in `find . -type f`
do
echo $i
mv $i `echo $i |tr ? _|tr = _ |tr ‘&’ ‘_’`
done

save the file using ‘:wq’ and then

chmod +x reminvchar.sh

and then run the file;

./reminvchar.sh

g33kadmin

I am a g33k, Linux blogger, developer, student and Tech Writer for Liquidweb.com/kb. My passion for all things tech drives my hunt for all the coolz. I often need a vacation after I get back from vacation....

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.