![]() |
|
|
|||||||
| Home | Forums | Register | Rules & FAQ | Members List | Arcade | 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 !! |
Other UNIX.COM Threads You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| filtering the logs | prvnrk | Shell Programming and Scripting | 5 | 04-08-2008 06:57 PM |
| awk and sed filtering | invinzin21 | Shell Programming and Scripting | 2 | 01-10-2008 11:56 PM |
| Filtering Data | bobo | UNIX for Dummies Questions & Answers | 2 | 09-19-2007 12:06 PM |
| awk filtering ? | varungupta | UNIX for Advanced & Expert Users | 4 | 09-16-2007 11:55 PM |
| Filtering Data | Raynon | Shell Programming and Scripting | 7 | 09-05-2007 03:38 PM |
![]() |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
Filtering out data ...
I have following command which tells me File size in GBs which are greater than 0.01GBs recursively in a dir structure.
ls -l -R | awk '{ if ($5/1073741824 >= 0.01) print $9, $5/1073741824 }' But there are some files whom I dont have enough permissions, after executing this script gives me error messages. Now my task is to suppress error messages. I tried with grep -v also. But it didnt help. Do you have any solution? |
| Forum Sponsor | ||
|
|