![]() |
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 Advanced & Expert Users Expert-to-Expert. Learn advanced UNIX, UNIX commands, Linux, Operating Systems, System Administration, Programming, Shell, Shell Scripts, Solaris, Linux, HP-UX, AIX, OS X, BSD. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| command to find out total size of a specific file size (spread over the server) | abhinov | SUN Solaris | 3 | 08-08-2007 06:48 AM |
| Size limitation in Tar command | Manvar Khan | Shell Programming and Scripting | 4 | 07-20-2007 09:19 AM |
| File size limitation for rcp | schoubal | Linux | 2 | 01-14-2006 01:58 AM |
| File size limitation of unix sort command. | cskumar | Shell Programming and Scripting | 7 | 10-07-2005 10:37 AM |
| HP-UX 11i - File Size Limitation And Number Of Folders Limitation | sundeep_mohanty | HP-UX | 2 | 08-01-2005 07:58 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Hi All,
I ran code in test environment to find the files more than 1TB given below is a snippet from code: FILE_SYSTEM=/home/arun MAX_FILE_LIMIT=1099511627776 find $FILE_SYSTEM -type f -size +"$MAX_FILE_LIMIT"c -ls -xdev 2>/dev/null | while read fname do echo "File larger than or equal to 1TB:" echo $fname | awk '{print $11}' done The above is not listing any of the files as there is no such big files exists in my test environment. So, it is working fine. But the same code in my production environment, lists the files smaller than 1TB also, like 6 GB files also.... at this point there is no file for 1TB also - so it is not listed. My Question is: why it has picked up files lesser than the given size? One more doubt: Is there any limitation on mumber of digits of parameters been passed to size option on find command? As per above 13-digits are passed. Please help me out on this with your expert thoughts. Thanks. |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|