Answers for "how to list the hidden files in linux"

3

show hidden files linux

ls -lha
# l long list
# h human format
# a all files including hidden files
Posted by: Guest on May-03-2022
0

Display hidden files in Linux

$ ls -a


Linux often use hidden files to store some configuration information.
	Hidden files in Linux are those with filenames that begin with a period (.).
    These files don't appear in the default ls listing ,
	thus called hidden files. The -a parameter with the ls command is used to display hidden files alongside normal folders and files.
Posted by: Guest on June-11-2022

Code answers related to "how to list the hidden files in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language