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