Jun 3, 2004 #1 dsm666 IS-IT--Management Mar 9, 2004 40 US when I do a list of files, how can use awk to print files larger than 10MB ls -l | awk '[print $4 thanks much
when I do a list of files, how can use awk to print files larger than 10MB ls -l | awk '[print $4 thanks much
Jun 3, 2004 #2 vgersh99 Programmer Jul 27, 2000 2,146 US man find vlad +----------------------------+ | #include<disclaimer.h> | +----------------------------+ Upvote 0 Downvote
man find vlad +----------------------------+ | #include<disclaimer.h> | +----------------------------+
Jun 3, 2004 Thread starter #3 dsm666 IS-IT--Management Mar 9, 2004 40 US vlad, thanks for taking the time. find won't work for me as I am using a list command from an application they call their list command cmulist. Upvote 0 Downvote
vlad, thanks for taking the time. find won't work for me as I am using a list command from an application they call their list command cmulist.
Jun 3, 2004 #4 vgersh99 Programmer Jul 27, 2000 2,146 US what's a sample output of 'cmulist'? vlad +----------------------------+ | #include<disclaimer.h> | +----------------------------+ Upvote 0 Downvote
what's a sample output of 'cmulist'? vlad +----------------------------+ | #include<disclaimer.h> | +----------------------------+
Jun 3, 2004 #5 vgersh99 Programmer Jul 27, 2000 2,146 US given Solaris 'ls' - files greater than 10K: Code: ls -l | nawk -v c=5 -v s=10000 '$c+0 > s' vlad +----------------------------+ | #include<disclaimer.h> | +----------------------------+ Upvote 0 Downvote
given Solaris 'ls' - files greater than 10K: Code: ls -l | nawk -v c=5 -v s=10000 '$c+0 > s' vlad +----------------------------+ | #include<disclaimer.h> | +----------------------------+
Jun 3, 2004 Thread starter #6 dsm666 IS-IT--Management Mar 9, 2004 40 US WHENTSTI 5249 when_test_file.txt 37 04/01/08-14:15 CRTFY WHENTSTI WHENTSTI 5250 when_test_file.txt 37 04/01/08-14:30 CRTFY WHENTSTI Upvote 0 Downvote
WHENTSTI 5249 when_test_file.txt 37 04/01/08-14:15 CRTFY WHENTSTI WHENTSTI 5250 when_test_file.txt 37 04/01/08-14:30 CRTFY WHENTSTI
Jun 3, 2004 #7 vgersh99 Programmer Jul 27, 2000 2,146 US Is my previous posting for Solaris 'ls' helpful? Try modifying it for your 'cmulist' sample output. vlad +----------------------------+ | #include<disclaimer.h> | +----------------------------+ Upvote 0 Downvote
Is my previous posting for Solaris 'ls' helpful? Try modifying it for your 'cmulist' sample output. vlad +----------------------------+ | #include<disclaimer.h> | +----------------------------+