Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私の qmail のバウンス フォルダには、ほぼ 100,000 通のスパム メッセージがあります。
私はこのコマンドを使用しようとしています:
find * | xargs -tl `qmHandle -d$1`
しかし、成功しませんでした。複数のバリエーションを試しました。私のマシンにはパラレルもありません。
私は試しました:
find * | xargs qmHandle -d
ただし、次の結果のコマンドの間にスペースを入れます。
qmHandle -d 133893
それを見つけた!
find * | xargs -tl -I {} qmHandle -d{}