The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #1 (permalink)  
Old 02-05-2008
bbilheimer bbilheimer is offline
Registered User
  
 

Join Date: Feb 2008
Location: Pasadena, CA
Posts: 3
Post Best way to list a directory's contents?

Hey guys!

I'm so glad I found this site, I've had so many questions and have been left alone for roughly a year scanning man pages but It's just not quite cutting it for some things.

So, I often like to list directories when browsing around my local machine, a friend's machine, or my web server. Especially the latter where size, permissions, and extensions really matter. The problem is most of the commands I use just don't quite show all the information I need!

If I use
Code:
ls -lsh
I get what I want, human readable file sizes, and I can sort the files in any number of ways, but it's messy and too much information I never use. With lots of files it can be huge and hard to read.

If I use
Code:
du -sh *
I get a nice crisp clear output with file sizes but this isn't supported on my web server while in FTP mode in my shell.

Both of these have the same problem: after reading the man pages up and down I can't figure out how to simply list the total number of files in a given directory!

I hope these questions aren't ridiculous, I'd just like to see if there is a better way of doing this that other people know, I've held of on asking anyone until now to avoid all of the "RTFM" responses I'd get in IRC Channels.

Thanks in advance!