find "path name" -name "file name" -exec grep -H "search content" {} \;
find原本是用「檔案名稱」來搜尋在哪些地方有這些檔案,將這些路徑結果餵給grep後,就可以拿來搜尋檔案內部的文字片段。
Ex:
find ./kernel -name "*.c" -exec grep -H "main" {} \;
find ./ -name "*.cc" -or -name "*.h" | xargs fgrep -nA5 "trace-on" 以上這段指令,是要搜尋./kernel底下所有的.c檔,內容含有"main"的地方。
find的參數:
-name 要搜尋哪些檔名
-exec utility name [argument...] {} \;
搜尋出的檔名 交給哪個執行檔(utility name)處理
{} 會被find搜尋後的檔名路徑名稱所取代
\; 代表exec的參數到此為止
grep的參數:
-H 列出搜尋到的檔案名稱路徑
訂閱:
張貼留言 (Atom)
[Ubuntu 14.04] 遠端桌面使用原生ubuntu14.04桌面
方法1: 1. 要先在原始VGA下打開terminal console 2. 輸入 $ gsettings set org.gnome.Vino require-encryption false ...
-
安裝 pip3 sudo apt-get install python3-pip 設定proxy # cd ~ # mkdir .pip # cd .pip # touch pip.conf # vi pip.conf [global] proxy = ...
-
sudo -E dnf install perl-JSON-PP or sudo -E yum install perl-JSON-PP
-
step1. 在終端機下使用hexdump這個tool把要比對的binary file 都先dump出來 例如: 想比對file1與file2,先將此兩檔案dump成new_file1與new_file2 hexdump -C file1 > new_file1 ...
沒有留言:
張貼留言