Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基本上我想动态启动一些可能创建自己的子进程的进程,我也想随时杀死我刚刚创建的某个进程组。我能想到的一种方法是使用名称启动进程(以区分为一个组),然后使用 pkill 按名称杀死它们。问题是如何使用名称启动进程,以便我可以使用 pkill 按名称杀死它们?我也对其他解决方案持开放态度。
如何使用不同的名称启动进程?
bash -c "exec -a <MyProcessName> <Command>" 然后您可以使用以下命令终止该进程: pkill -f MyProcessName
bash -c "exec -a <MyProcessName> <Command>"
然后您可以使用以下命令终止该进程:
pkill -f MyProcessName