[[コマンド]]
*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, {} ! #プレースホルダーと、スペース改行を含むファイルの扱い
|