Thursday, October 17, 2013

exim commands

Delete queue:

sudo exim -bp | awk '{print $3}' | xargs exim -Mrm


No comments:

Post a Comment

cancel script completely on ctrl-c

I found this question interesting: basically how to cancel completely a script and all child processes : You do this by creating a subro...