1. 程式人生 > >Linux命令查詢結構體,查詢檔案

Linux命令查詢結構體,查詢檔案

在Linux裡面查詢某個結構體的定義,也可以查詢內容所在哪個檔案

find /usr/include/ -name "*.h" | xargs grep -w DIR

-w 匹配整個單詞

-i 不區分大小寫

grep -R "^struct flock" /usr/include/

匹配正則表示式或者字串

-R 在指定目錄遞迴查詢

find / path \( -name "*.txt" -o -name "*.jpg" -o .... \) 查詢字尾名為xx的檔案