Hi
I wrote a shell script test.sh which will run an executable of a fifo benchmark.
test.sh#!/bin/sh
echo "change directory"
cd build/source/fifo
echo "run fifo"
./fifo
When I run test.sh which in ipc-bench directory I get following error,
Could not set group id for child process: Operation not permitted
How do I fix this?
Hi I wrote a shell script test.sh which will run an executable of a fifo benchmark.
test.sh #!/bin/sh echo "change directory" cd build/source/fifo echo "run fifo" ./fifo
When I run test.sh which in ipc-bench directory I get following error, Could not set group id for child process: Operation not permitted How do I fix this?
Thanks