2014-01-28 10:27:02 +01:00
|
|
|
# ls
|
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
> List directory contents.
|
2014-01-28 10:27:02 +01:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- List all files, even hidden:
|
2014-01-28 10:27:02 +01:00
|
|
|
|
|
|
|
`ls -a`
|
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- List all file names (no extra info):
|
2014-01-28 10:27:02 +01:00
|
|
|
|
2014-03-02 18:30:07 +11:00
|
|
|
`ls -A1`
|
2014-01-28 10:27:02 +01:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- List all files with their rights, groups, owner:
|
2014-01-28 10:27:02 +01:00
|
|
|
|
2015-12-15 23:10:32 +02:00
|
|
|
`ls -l`
|
2014-01-28 21:58:16 +00:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- List all files and display the file size in a human readable format:
|
2014-04-16 20:24:01 +02:00
|
|
|
|
|
|
|
`ls -lh`
|
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- List all files with a prefix/suffix:
|
2014-01-28 21:58:16 +00:00
|
|
|
|
2014-03-02 18:31:17 +11:00
|
|
|
`ls {{prefix}}*`
|
|
|
|
`ls *{{suffix}}`
|
2014-01-28 21:58:16 +00:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Sort the results by size, last modified date, or creation date:
|
2014-01-28 21:58:16 +00:00
|
|
|
|
2014-09-18 02:13:24 +10:00
|
|
|
`ls -S`
|
|
|
|
`ls -t`
|
|
|
|
`ls -U`
|
2014-02-21 14:05:52 -08:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Reverse the order of the results:
|
2014-02-21 14:05:52 -08:00
|
|
|
|
2014-03-02 18:30:07 +11:00
|
|
|
`ls -r`
|