Convert Uppercase to Lowercase in Linux
Greetings,
Someone suggested converting all the Ultima On-line files to lowercase. Since Linux is case sensitive, I thought I would give it a try. Open Konsole in the folder you wish to convert. Here is the command...
for i in `find * -depth`; do (mv $i `echo $i|tr [:upper:] [:lower:]`); doneBTW: I did not help any.
-Ravon

0 Comments:
Post a Comment
<< Home