find

差異處

這裏顯示兩個版本的差異處。

連向這個比對檢視

兩邊的前次修訂版 前次修改
下次修改
前次修改
find [2016/09/10 02:17] jzfind [2017/10/17 19:47] (目前版本) jz
行 54: 行 54:
  
 Note that files that have been "created" within the specified time frame will also matched by these commands. Note that files that have been "created" within the specified time frame will also matched by these commands.
 +
 +To show the file name with grep.
 +<code>
 +$ find . -type f -name '*.c' -exec grep -n 'rsa' {} +
 +</code>
 +
 +
 +Find files that are bigger than 4096M
 +<code>
 +find . -type f -size +4096M
 +</code>
  • find.1473445022.txt.gz
  • 上一次變更: 2016/09/10 02:17
  • jz