blob: 0d0d64b873f5e9266427803d8ff0081589b65215 (
plain)
1
2
3
4
5
6
7
8
|
= Listing hidden files
Some files are hidden, because they start with a dot, `.`
Usually, `ls` doesn't list these files. But you can make it list these files as
well by using the `--all` flag:
ls --all
|