Command to check hidden files via SSH

kumkumsharma

Administrator
Staff member
Hidden files are files which cannot be listed directly with ls command, mainly hidden files are used to execute the script about any services.

You can run below command to check hidden files:

Code:
ls –a
 
Top