Aug 26, 2005 #1 hfaix MIS Joined Nov 25, 2003 Messages 596 Location 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 1 #2 hoinz MIS Joined Jan 29, 2004 Messages 944 Location DE what about: wc -c * Upvote 0 Downvote
Aug 26, 2005 Thread starter #3 hfaix MIS Joined Nov 25, 2003 Messages 596 Location US That's a lot closer than I was. Thanks Upvote 0 Downvote
Aug 26, 2005 1 #4 Annihilannic MIS Joined Jun 22, 2000 Messages 6,317 Location 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.