2014-01-28 13:27:02 +04:00
|
|
|
# ls
|
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
> List directory contents.
|
2014-01-28 13:27:02 +04:00
|
|
|
|
2016-01-20 14:39:15 +03:00
|
|
|
- List files one per line:
|
2014-01-28 13:27:02 +04:00
|
|
|
|
2016-01-20 14:39:15 +03:00
|
|
|
`ls -1`
|
2014-01-28 13:27:02 +04:00
|
|
|
|
2016-01-20 14:39:15 +03:00
|
|
|
- List all files, including hidden files:
|
2014-01-28 13:27:02 +04:00
|
|
|
|
2016-01-20 14:39:15 +03:00
|
|
|
`ls -a`
|
2014-01-28 13:27:02 +04:00
|
|
|
|
2016-01-20 14:39:15 +03:00
|
|
|
- Long format list (permissions, ownership, size and modification date) of all files:
|
2014-01-28 13:27:02 +04:00
|
|
|
|
2016-01-20 14:39:15 +03:00
|
|
|
`ls -la`
|
2014-01-29 01:58:16 +04:00
|
|
|
|
2016-01-20 20:59:42 +03:00
|
|
|
- Long format list with size displayed using human readable units (KB, MB, GB):
|
2014-04-16 22:24:01 +04:00
|
|
|
|
|
|
|
`ls -lh`
|
|
|
|
|
2016-01-20 14:39:15 +03:00
|
|
|
- Long format list sorted by size (descending):
|
2014-02-22 02:05:52 +04:00
|
|
|
|
2016-01-20 14:39:15 +03:00
|
|
|
`ls -lS`
|