mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-27 07:43:07 +02:00
14 lines
227 B
Bash
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
|
|
} |