![]() |
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 |
| 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 |
| find file size greater than 1 GB | ali560045 | Shell Programming and Scripting | 11 | 01-08-2009 10:16 AM |
| find lines have 2nd colum value greater than 40 | devesh123 | Shell Programming and Scripting | 5 | 10-01-2008 08:07 AM |
| Finding files with names that have a real number greater then difined. | harmonwood | Shell Programming and Scripting | 2 | 11-09-2007 10:28 AM |
| find - finding files. | gsjf | Shell Programming and Scripting | 3 | 09-04-2002 02:14 PM |
| How can I automatically find important files??? | TRUEST | UNIX for Dummies Questions & Answers | 4 | 04-18-2002 11:15 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Important finding --- find files greater than 1 MB
as we can find file greater than 1 MB with find command as:
find /dir -name '*' -size +1M find /dir/* -name '*' -size +1M but wats its doing is , its finding files only in current directory not in sub-directories. i want files from sub-directories too. Please help... Thanx in advance...!!!! |
|
||||
|
By default, the find command parses through sub-directories. What O/S Flavor are you on?
for example... find . -print will return a complete file listing for everything from the current directory down... Note that not all U**X Flavor support the human readable size nomenclature. Try +1000k instead. All find command support sizes of b,c,w and k. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|