Aug 26, 2005 #1 hfaix MIS Nov 25, 2003 596 US Is their an easy way to list "just" the filename and filesize? I thought this might be an ls flag, but I can't find one. Thanks!
Is their an easy way to list "just" the filename and filesize? I thought this might be an ls flag, but I can't find one. Thanks!
Aug 26, 2005 Thread starter #3 hfaix MIS Nov 25, 2003 596 US That's a lot closer than I was. Thanks Upvote 0 Downvote
Aug 26, 2005 1 #4 Annihilannic MIS Jun 22, 2000 6,317 AU Or a lot faster, since it doesn't have to count the characters in the file: Code: ls -l | awk '{print $9,$5}' Annihilannic. Upvote 0 Downvote
Or a lot faster, since it doesn't have to count the characters in the file: Code: ls -l | awk '{print $9,$5}' Annihilannic.