Difference between revisions of "Ls"

From Linuxintro
imported>ThorstenStaerk
imported>ThorstenStaerk
Line 24: Line 24:
 
You do not use ls, but du:
 
You do not use ls, but du:
 
  [[du]] -sh ''directory''
 
  [[du]] -sh ''directory''
 +
 +
= See also =
 +
* [http://man-wiki.net/index.php/Ls ls' man page]

Revision as of 11:23, 10 September 2011

ls is a command that list files in a given directory. If no directory is given, it lists the files in the current working directory:

tweedleburg:~/svn/kdepim # ls
.emacs-dirvars       README.Kolab           kdgantt1           ktimetracker
.kateconfig          akonadi                kitchensync        lib
[...]

How to...

only list directories

ls -d */

Sort by date

List with the latest changed files below:

ls -ltr

find out the free disk space

You do not use ls, but df:

df -h

tells you how much disk space is left.

find out the size of a directory

You do not use ls, but du:

du -sh directory

See also