I have a problem while executing a bash script from C++ using the system call command.
The script catches a SIGPIPE
signal and exit with return code 141
.
This problem has started to appear only in the last release of my code.
My Questions are as follows:
- Why does this SIGPIPE occur now and didn't occur before?
- Is it safe to ignore the SIGPIPE and what are the consequences?