[[コマンド]] *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つ異常のコマンド |