문제

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{}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top