2020-05-02 00:01:44 +02:00

18 lines
514 B
Bash
Executable File

#!/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