开发者

Using xargs with qmHandle to remove bounce messages [closed]

开发者 https://www.devze.com 2023-01-27 01:40 出处:网络
Closed. This question is off-topic. It is not currently accepting answers. 开发者_开发问答Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed. This question is off-topic. It is not currently accepting answers.
开发者_开发问答

Want to improve this question? Update the question so it's on-topic for Stack Overflow.

Closed 10 years ago.

Improve this question

I have almost 100,000 spam messages in my bounce folder for qmail.

I've been trying to use this command:

find * | xargs -tl `qmHandle -d$1`

But with no success. I've tried multiple variations. I also don't have parallel on my machine.

I did try:

find * | xargs qmHandle -d

But it puts a space between the resulting command of:

qmHandle -d 133893


Found it!

find * | xargs -tl -I {} qmHandle -d{}
0

精彩评论

暂无评论...
验证码 换一张
取 消