根据手册页,如果其中一条执行行以255错误退出,则xargs将退出:
@H_404_16@
您可以使用另一个简单的bash脚本包装perl脚本:
If any invocation of the command exits with a status of 255,xargs will stop immediately without reading any further input. An error message is issued on stderr when this happens.
我怎样才能让xargs不这样做?
我有一个1500左右的批处理作业,我想要运行,一次50行.我发现它总是在某条线上死亡,而没有完成这项工作.不好!
一个更好的问题,描述我想要做的问题是:
#!/bin/bash real-command "$@" || exit 0
这将调用real-command传递它传递给这个伪命令的所有参数,并且它将始终返回0退出代码(这意味着它总是成功),并且xargs将永远不会停止.