假设我已经开始如下流程:
java -DSOME_STRING -jar foo.jar
然后在 Linux 上,我可以使用以下命令来查找或终止该进程:
pgrep -f SOME_STRING
pkill -f SOME_STRING
然而这似乎不适用于 cygwin。任何人都可以建议 cygwin 中这些工具的替代品吗?
答案1
pkill 和 pgrep 当然存在于 Cygwin 中,在过程包(可以搜索cygwin包这里)。
它似乎对我有用,
tony:~$ nohup sleep 100983 &
[1] 5476
tony:~$ nohup: ignoring input and appending output to `nohup.out'
tony:~$
tony:~$ ps -ef | grep sleep
tony 5476 2696 2 23:28:53 /usr/bin/sleep
tony:~$ pkill -f sleep
[1]+ Terminated nohup sleep 100983
tony:~$
和
tony:~$ nohup sleep 837746 &
[1] 228
tony:~$ nohup: ignoring input and appending output to `nohup.out'
tony:~$ pgrep -f 837746
228
tony:~$ pkill -f 837746
[1]+ Terminated nohup sleep 837746
tony:~$
更新:好的,用java测试过。从 Cygwin 命令行执行 java 不会导致将 java 字符串放入其中/proc/<pid>/cmdline
,而只是包含-bash
.这似乎是 Cygwin 的限制。
tony:~$ java -Dsomething=valid -jar Captor.jar &
[1] 2700
tony:~$ ps -ef
UID PID PPID TTY STIME COMMAND
tony 4164 1 ? Aug 21 /usr/bin/mintty
tony 4676 4164 0 Aug 21 /usr/bin/bash
tony 5776 4676 0 Aug 23 /usr/bin/ssh
tony 5148 1 ? 23:53:03 /usr/bin/mintty
tony 5332 5148 1 23:53:03 /usr/bin/bash
tony 5816 1 ? 00:04:16 /usr/bin/mintty
tony 5432 5816 2 00:04:16 /usr/bin/bash
tony 2700 5432 2 00:04:34 /cygdrive/c/Windows/system32/java
tony 2232 5432 2 00:04:39 /usr/bin/ps
tony:~$ pgrep -f something
tony:~$ cat /proc/2700/cmdline
-bash
tony:~$
tony:~$ cat /proc/2700/exename
/cygdrive/c/Windows/system32/java
因此我怀疑,答案是你不能使用 Cygwin 工具来做到这一点,你需要一个 Windows 特定的工具。
答案2
在较旧的 Cygwin 版本中,procps
您可以安装一个软件包,以使用相同的命令获得相同的功能。
在较新的 Cygwin 版本中,该procps
包不再存在并被 package 取代procps-ng
。