diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-02-10 00:10:40 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-02-10 00:10:40 +0100 |
| commit | e9ab6b0a3ffcb69ed0868f9ec4b61e8f7ad36d85 (patch) | |
| tree | e99eddcf75128810e4afd988bf3ffacff8acf3e6 /man/ls.md | |
| parent | 5b47adb57b11acb2318053d710d075d37f669f76 (diff) | |
add manuals
Diffstat (limited to 'man/ls.md')
| -rw-r--r-- | man/ls.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/man/ls.md b/man/ls.md new file mode 100644 index 0000000..4839115 --- /dev/null +++ b/man/ls.md @@ -0,0 +1,20 @@ +# ls + +List entries of a directory + +## Usage + +``` +$ ls [path] +``` + +To list all entries (also the hidden ones starting with '.') + +``` +$ ls -a [path] +``` + + +## Notice + +If the path is omitted the current working directory is listed. |