Killing process in Shell Script

后端 未结 7 2045
囚心锁ツ
囚心锁ツ 2021-02-09 05:04

I have a very simple problem: When I run a shell script I start a program which runs in an infinite loop. After a while I wanna stop then this program before I can it again with

相关标签:
7条回答
  • 2021-02-09 05:52
    pidof app1
    pkill -f app1
    
    0 讨论(0)
提交回复
热议问题