What is a linux ._ file?
In Linux, files starting with a dot are hidden files and require the -a parameter to be displayed and listed.
There are no restrictions when opening the specified file name.
Usually used to store system log records (.bash_history), service configuration files (.htaccess), and temporary files (vi will create .xxxx.swp files).
There are also some software that will create a directory starting with . to store a series of configuration files and plug-ins (.idea)
Recommended: "Linux Tutorial"
For example, if you enter #ll in the terminal, you will see all the unhidden files in the directory, which are what you see with the naked eye, but if you enter #ls -al, you can see a lot more. The files at the beginning include hidden files.
The above is the detailed content of What is linux ._file. For more information, please follow other related articles on the PHP Chinese website!