Tagged Questions
2
votes
3answers
2k views
Alternative to `pkill` or `pgrep -f` on cygwin?
Suppose I have starting my process like:
java -DSOME_STRING -jar foo.jar
Then on linux, I can use the following to find or kill this process:
pgrep -f SOME_STRING
pkill -f SOME_STRING
However ...