xargs binecho terminated by signal 13
The error message "xargs: /bin/echo: terminated by signal 13" indicates that the "/bin/echo" command executed by xargs was terminated by signal number 13.
Signal 13 is typically the SIGPIPE signal, which is generated when a process attempts to write to a pipe that has been closed by the reader end. This can happen if the command executed by xargs is trying to write output to a pipe and the receiving process has already terminated or closed the pipe.
To resolve this issue, you can check if the command being executed by xargs is correct and if the input data being passed to xargs is as expected. You can also check if any other processes or commands involved in the pipeline are terminating unexpectedly or closing the pipe prematurely
原文地址: http://www.cveoy.top/t/topic/iYzt 著作权归作者所有。请勿转载和采集!