beremiz
Clone
Summary
Browse
Changes
Graph
Add "CONTINUE" ST statement.
22 months ago, Edouard Tisserant
ccf7461e8ff2
Add "CONTINUE" ST statement.
Matches "Add CONTINUE statement, fix FOR loop accordingly" 8a06b3bb92967b389466b8afa977a995ec605e2d commit in Matiec.
#!/bin/bash
# Run python example throug command line, and check usual output
coproc setsid $BEREMIZPYTHONPATH $BEREMIZPATH/Beremiz_cli.py -k --project-home $BEREMIZPATH/exemples/python build transfer run;
while read -u ${COPROC[0]} line; do
echo "$line"
if [[ "$line" == *Grumpf* ]]; then
pkill -9 -s $COPROC_PID
exit 0
fi
done
exit 42