LPI E - Scripting 4.3 Where Data is Stored Finding The Data Here are just a few examples of the many parameters and switches that can be used with the " find " command to locate configuration files for Linux programs and binaries. By understanding these basic parameters, a Linux learner can begin to effectively search for files and directories using the terminal. 👇👽💦 This command searches the "/etc" directory and all its subdirectories for files with the ".conf" extension. $ find /etc -name "*.conf" This will search for the file named "nginx.conf" starting in the "/etc/" directory. $ find /etc/ -name nginx.conf ... to find the configuration files for the Apache web server, you can use the following command $ find /etc -name "apache*" This command searches the "/usr" directory and all its subdirectories for files of type "f" (regular file) with the ".txt" extension...
I am Darian Ross. Welcome to my blogger site.