![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| df -k and deleting files | ajayr111 | UNIX for Dummies Questions & Answers | 4 | 03-14-2007 08:03 PM |
| Deleting Files | bc4 | UNIX for Dummies Questions & Answers | 1 | 01-25-2007 11:27 PM |
| Deleting files | BG_JrAdmin | SUN Solaris | 1 | 11-29-2006 01:17 AM |
| Deleting old files | shiroh_1982 | Shell Programming and Scripting | 2 | 06-21-2006 04:42 AM |
| Deleting the files | livetaurean19 | Shell Programming and Scripting | 0 | 06-16-2005 04:16 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Help needed in deleting the files
Hi,
I wanted to check whether any files are available under the path /usr/app/logs/. If the files are available under this path then i have to delete all the files except the files system.log, system.log.1, system.log.2 and sub folders under this path Can any one please help me on this? Thanks in advance. Last edited by Sheethal; 11-13-2007 at 05:17 AM.. |
|
||||
|
# change the directory
$$ cd /usr/app/logs/ # See the list of files under /usr/app/logs/ $$ ls -lrt /usr/app/logs/* # send the output into a file and exclude system.log* $$ ls -lrt /usr/app/logs/* | grep -v system.log* > /tmp/ListOfFiles.txt # Check the list of files $$ cat /tmp/ListOfFiles.txt # If it is ok, delete them $$ for file in /tmp/ListOfFiles.txt; do rm -i $file; done NB: Check and confirm b4 delete them |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|