Problem Statement
Which command lists all files including hidden ones in Linux?
Explanation
The command ls -a shows all files, including hidden ones that start with a dot.
It is commonly used to inspect configuration files like .bashrc or .gitignore.
Code Solution
SolutionRead Only
ls -a
Practice Sets
This question appears in the following practice sets: