How to list hidden files in command prompt

Linux ‘ls’ command options For example: $ ls -a /home/user/your-folder/ If you only want to show hidden files, you can use the special regex modifier below: $ ls -dl .[^.]* /home/user/your-folder/ With the File Explorer You can easily show hidden files using the file explorer in Ubuntu-based Linux desktop environments (Gnome 3, Mate, etc.). ................
................