DEV Community

Discussion on: Running (and killing) multiple processes in a single shell script

Collapse
 
coolvikas profile image
Vikas Kumar

Thanks, Connor for the explanation but I want to know the specific detail on 'INT'
Is INT and SIGINT the same?

Thread Thread
 
connorbode profile image
Connor Bode

Yes, the INT you see in the script is SIGINT, which is an "interrupt signal"

Thread Thread
 
coolvikas profile image
Vikas Kumar

Thanks, Connor it was helpful