admin
  • -1
Begginer

How to get a list of hidden files in Linux?

  • -1

In Linux, hidden files are typically denoted by a dot (.) at the beginning of their file name. These files are hidden by default in directory listings to avoid cluttering the output, but can be displayed using various commands.

Here are some common hidden files that you may come across in Linux:

  • .bashrc: This file contains configuration settings for the Bash shell, such as aliases and environment variables.
  • .bash_history: This file contains a history of commands entered in the Bash shell.
  • .ssh: This directory contains SSH keys used for authentication.
  • .profile: This file contains shell settings that are applied when a user logs in.
  • .git: This directory contains files used by the Git version control system.
  • .config: This directory contains configuration files for various applications.
  • .gnupg: This directory contains GnuPG encryption keys and configuration files.
  • .mozilla: This directory contains configuration files for the Mozilla Firefox web browser.
  • .cache: This directory contains cached data for various applications.

These are just a few examples of hidden files in Linux. There may be many more depending on the specific applications and settings installed on your system. To view hidden files in a directory listing, you can use the -a (or –all) option with the ls command. For example:

ls -a /path/to/directory

I hope that helps! Let me know if you have any further questions.

Leave an answer

Leave an answer

Browse