![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | 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 and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| small script help | ali560045 | Shell Programming and Scripting | 9 | 01-18-2008 10:18 AM |
| what is problem with this small shell script.. case statement related | johnray31 | Shell Programming and Scripting | 2 | 12-10-2007 03:05 PM |
| small script | everurs789 | Shell Programming and Scripting | 3 | 11-06-2007 05:08 PM |
| Shell - a small error! :( | abrox | Shell Programming and Scripting | 8 | 07-19-2007 05:32 AM |
| Need help in a small script | super_duper_guy | Shell Programming and Scripting | 2 | 10-24-2005 11:06 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Very small Shell Script Help...
The following Script takes each extension and determine what category it
belongs and then moves it into a directory based on the extension. (for eg. 1.sh, 5.sh, 9.sh together; 4.csh, 120.csh, 6.csh together and 7.ksh, 2.ksh, 59.ksh together) and moves them to their respective directories viz. sh, csh and ksh... #!/usr/bin/ksh for ext in ` ls -d *.* | awk -F. '{print $NF}' | sort -u ` do mkdir -p $ext mv *."$ext" "$ext"/. done The above Script sees for all similar extension, creates the directories and moves Files to their corresponding directories. I am trying to do it per extension only and not all at a time, like take all files with ksh only and try to move them to ksh directory while dont do anything to files with Extension sh and csh. That is the Shell parameter should be taken. Can anyone give some inputs. Thanks a lot in advance. |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|