Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
myCExec arg1 arg2
if [ $? -ne 0 ]; then
echo "program failed: exiting"
exit 1
fi
echo "No problem: keep going"
...
if myCExec arg1 arg2; then
echo "No problem: keep going"
else
echo "Program failed: exiting"
exit 1;
fi
...