[[コマンド]]

*grep [#ebd930c1]
 grep -v "text" # textがない行にヒット.普通の使い方とは併用不可

*find [#e0883843]
 find . -type f -not -regex "*~" # *~でないファイルにヒット
 find /tmp/hogehoge* -type f | xarg rm # 今時-execなんて使わない
 find . -name "*.rb" -type f -print0 | xargs -0 -I {} echo Hello, {} ! #プレースホルダーと、スペース改行を含むファイルの扱い
 find . -name "Makefile" -type f -print0 | xargs -0 -I {} grep 'O6' {} #実例
 find . -name "Makefile" -type f -print0 | xargs -0 -I {} sh -c 'echo {}; grep O6 {}' #2つ異常のコマンド

トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS