named-pipes-services/run_service1.sh
nojhan 016852e281 adds python implementations
- more README
- fix some C++ code along the way
2022-08-31 00:37:17 +02:00

12 lines
147 B
Bash
Executable file

# ./service1 data > out &
./service1 data out &
PID_SERVICE=$!
echo "Hellow World!" > data &
cat out &
echo "exit" > data
# kill $PID_SERVICE