18 lines
497 B
Bash
Raw Normal View History

2020-10-22 11:57:36 +02:00
#!/bin/bash
################################################
# DUT INFORMATIQUE - M311 - R. CHIGNOLI #
# bash_trap : traitement des signaux en bash #
################################################
echo '*******************************************'
echo '* J'ignore les signaux SIGQUIT et SIGTERM *'
echo '*******************************************'
trap 'echo Ignore signal SIGINT' SIGINT
trap 'echo Ignore signal SIGTERM' SIGTERM
while true
do
echo je boucle
sleep 1
done