![]() |
|
|
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 |
| simple shell - how to get a parameter typed in a shell script | cmitulescu | Shell Programming and Scripting | 4 | 01-09-2009 08:45 PM |
| Copy code from shell | yohoshua | UNIX for Dummies Questions & Answers | 1 | 10-12-2006 03:20 AM |
| how to convert from korn shell to normal shell with this code? | forevercalz | Shell Programming and Scripting | 21 | 11-23-2005 02:18 AM |
| very simple shell thing.. | sskb | UNIX for Dummies Questions & Answers | 2 | 06-26-2003 07:18 PM |
| A simple shell question | a_new_admin | Shell Programming and Scripting | 2 | 11-01-2001 01:28 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Please verify the simple Shell code
Hi,
i am trying to write script which will delete files(more than 90 days older) from different directories. Please check its ok if i implement it in SUN solaris10; One important thing i used here "exec" flag. I heard from someone- as i have lots of files "exec" flag may give error like too long argument. So, what should i do to remove huge files. #!/usr/bin/sh find /var/opt/backup/cam* -mtime +90 -exec rm {} \; find /var/opt/backup/tmp/zam* -mtime +90 -exec rm {} \; find /var/opt/otherbackup/cat* -mtime +90 -exec rm {} \; find /var/opt/otherbackup/cat* -mtime +5 -exec rm {} \; |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|