![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Renaming files as per directory | dotancohen | Shell Programming and Scripting | 2 | 03-22-2008 03:25 PM |
| Need to change filenames in a particular directory from lowercase to UPPERCASE | Duke_Lukem | UNIX for Dummies Questions & Answers | 7 | 01-07-2008 03:32 PM |
| Renaming the files | redbeard_06 | Shell Programming and Scripting | 12 | 02-27-2007 08:10 AM |
| renaming and number padding using directory as guide, help | TiredOrangeCat | Shell Programming and Scripting | 3 | 02-12-2007 09:41 PM |
| renaming files | raguramtgr | UNIX for Dummies Questions & Answers | 4 | 09-21-2004 07:57 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
can anybody help me in renaming all the file in a directory to lowercase? script will be helpful.
|
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
Code:
for filename in * do newfile=`echo $filename | tr [A-Z] [a-z] mv $filename $newfile done |
||||
| Google The UNIX and Linux Forums |