linux search all file content under the folder

linux search all file content under the folder

shell> find . -type f -name "*.*" | xargs grep "10080"
./1.conf:        proxy_pass http://172.21.16.11:10080;
./2.conf:        proxy_pass http://172.21.16.11:10080;
./3.conf:        proxy_pass http://172.21.16.11:10080;

Guess you like

Origin blog.csdn.net/sayyy/article/details/131423906