Files
tp_processus/wait.sh
2021-05-18 13:36:50 +02:00

12 lines
137 B
Bash
Executable File

#! /bin/bash
trap func SIGINT SIGTERM
function func {
echo "haha try again young padawan"
echo $1
}
while : ; do
sleep 1
done