2015年11月1日 星期日

Linux - 使用 grep 搜尋檔案內容

尋找單一檔案中的特定字串

 grep -n "keyword" /directory/file

尋找資料夾中含有特定字串的檔案

 grep -rl "keyword" /directory/*

尋找資料夾中含有特定字串的檔案,並標明字串位置

grep -rn "keyword" /directory/*

沒有留言: