+4 votes
in Operating Systems by (71.8k points)
What is the Linux command to show the hidden files present in a directory?

1 Answer

+1 vote
by (349k points)
selected by
 
Best answer

To show all directories and files including the hidden files in a directory, run ls command with the “-a” (all) option.

$ ls -a


...