bash
・半角英数字およびアンダーバー、@、ハイフン、ドットを1つ以上含むzipファイルにマッチ
$ find -maxdepth 1 -type f | egrep '[-A-Za-z0-9_@.]+\.zip'
・カレントディレクトリにちゃんといることの確認。自動化する際の保険
$ if [[ `pwd` =~ /tmp/workDir_.* ]] ; then find -maxdepth 1 -type f | egrep '[-A-Za-z0-9_@.]+\.zip' | xargs rm -f ; fi
この記事が気に入ったらサポートをしてみませんか?