Count your home entries
Quest: count-home-entries
Mission
Run ls -la ~ and count the entries in your home directory, excluding . and ...
Why This Matters
Your home directory is your base on the server. Some important files are hidden dotfiles, so ordinary ls does not show the full picture.
Commands You Will Use
ls
Steps
- Run
ls -la ~. - Ignore the entry named
.. - Ignore the entry named
... - Count every other entry.
- Answer the guide with the count.
Hints
-ameans show hidden files too..means the current directory...means the parent directory.- Count the names at the end of the listing lines.
If Check Fails
Run ls -la ~ again and recount. Do not count the . and .. entries.

Linux Foundations