1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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.