J'ai un script Bash, qui ressemble à ceci:
#!/bin/bash
echo "Doing some initial work....";
/bin/start/main/server --nodaemon
Maintenant, si le shell bash exécutant le script reçoit un signal SIGTERM, il doit également envoyer un SIGTERM au serveur en cours d’exécution (ce qui bloque, donc aucune interruption possible). Est-ce possible?