2020年3月19日 星期四

[Linux 指令] find -exec grep 同時顯示搜尋到的檔案跟行號

grep 要用-H 強迫顯示檔案,-n顯示檔案的行號

find -L . -name "*.[ch]" -exec grep -Hn --color=auto "內文" {} \;

另一種方法 --with-filename
grep --with-filename 'pattern' file

沒有留言:

張貼留言

[Ubuntu 14.04] 遠端桌面使用原生ubuntu14.04桌面

方法1:  1. 要先在原始VGA下打開terminal console 2. 輸入     $  gsettings set org.gnome.Vino require-encryption false                                     ...