1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-31 06:18:17 +01:00

Added prefix/suffix and time sorting

This commit is contained in:
Rory Crispin 2014-01-28 21:58:16 +00:00
parent 08949598fa
commit 0f7d2ba6df

View file

@ -13,3 +13,14 @@
- List all files with their rights, groups, owner
`ls -ls`
- List all files with a prefix/suffix
`ls {prefix*}` or `ls {*suffix}`
- Sort files by time
`-t` for last modified
`-U` for date of creation
`-r` reverses the list
`ls -tr`