0
我有以下bash腳本。bash腳本中的SIGINT
#!/bin/bash
while :
do
sleep 2
infiniteProgramm -someParametrs
sleep 10
#in this line I need to stop my infiniteProgramm with bash command (SIGINT) (like Ctrl+C, but automatic)
clear
done
我怎麼能發送SIGINT
信號,我infiniteProgramm
?