Move pages back into a "pages" folder

This commit is contained in:
rprieto
2014-03-04 23:28:29 +11:00
parent 0a4c0f0a37
commit f00bf64426
99 changed files with 0 additions and 0 deletions

30
pages/common/ls.md Normal file
View File

@@ -0,0 +1,30 @@
# ls
> List directory contents
- List all files, even hidden
`ls -a`
- List all file names (no extra info)
`ls -A1`
- List all files with their rights, groups, owner
`ls -ls`
- List all files with a prefix/suffix
`ls {{prefix}}*`
`ls *{{suffix}}`
- Sort the results size
`ls -s # by size`
`ls -t # by last modified date`
`ls -U # by creation date`
- Reverse the order of the results
`ls -r`