Added prefix/suffix and time sorting

waldyrious/alt-syntax
Rory Crispin 2014-01-28 21:58:16 +00:00
parent 08949598fa
commit 0f7d2ba6df
1 changed files with 11 additions and 0 deletions

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`