Files
bash/tests/cracauer-testsuite/lib.sh
T
2011-12-03 12:52:47 -05:00

14 lines
227 B
Bash

docatcher()
{
echo 'Trigger some async actions, shell should not exit'
echo 'Then exit catcher with C-d'
if [ ! -f ./catcher ] ; then
make catcher
fi
./catcher
}
endless()
{
while : ; do foo=1 ; done
}