|
|
|
|
UGU: Unix Guru Universe - Unix Tip #4441- May 8, 2024
- Home : Help
: Today's Tip
Unix Tip #4441- May 8, 2024
LARGES FILES MORE FLAVORS
Recently a single line
script was posted to UGU
to list the largest files
in a filesystem in order
of descending size.
The script worked as posted
on AIX but required tweaking
for SCO OSR5 and UW7.
Here 'tis for your
edification and enjoyment:
OSR5:
find $1 -type f -size +2048 -xdev -exec ls -s {} | /bin/sort -brut " "
UW7:
find $1 -type f -size +2048 -xdev -exec ls -s {} + | /bin/sort -nr
I placed the script in
/usr/local/bin and removed
the pipe to "more" in the
published version to allow
redirection to a file. I
also arbitrarily added the
"-size +2048" to the find
command to limit the list
to files of 1 Mb or larger;
you may modify or remove as
desired.
Thank you,
Lucky Leavell
NOTE: All tips provided are USE AT YOUR OWN RISK. Tips are submitted
by various unix admins around the globe. UGU suggest you read and
test each tip in a non-volitile environment before placing into
production.
LAST 5 TIPS
4440
- HPUX MEMORY RESOURCES
4439
- TRUE64 SENDING JOBS
4438
- USING PERL TO REVERSE
4437
- GETTING RID OF ^M
4436
- SPECIFIC REMOVALS
I want to
SUBSCRIBE
and get a UGU Tip everyday.
I want to
UNSUBSCRIBE
and NOT get a UGU Tip everyday.
If you have a UNIX TIP let us know, we just may use it:
(All tips become the property of the Unix Guru Universe)
|
|
|
Copyright 1994-2024 Unix Guru Universe |
|
|
|
|