Conversation

difficult GNU/Linux quiz (for people I haven't spoiled already): what is this program good for?
#!/usr/bin/env bash

"$@"

if [[ $? -ne 0 ]]; then
    exit 255
fi
1
2
Replying to
indeed. I lost 118 files recently because xargs continued on error and I didn't notice the output above. xargs stops itself entirely only when it gets exit code 255 from the subprocess.
2
4