linux/ubuntu grep指定文件類型/排除文件類型查找

grep指定h文件類型查找hello字符串: find -type f -name '*.h' | xargs grep "hello"java grep排除java和c文件類型查找hello字符串 grep "hello"-nR --exclude=*.{java,c}字符串 排除lib目錄查找文件hello.cgrep find -name lib -prune -o -name hello.
相關文章
相關標籤/搜索