我正在使用Mac OS X,这意味着我没有(例如)pgrep / pkill,但我想要这样的东西(我不使用macports / fink,或者 - homebrew是我选择的Unix包工具 - 所以那些包裹不会这样做。
我想找到并杀死具有特定参数的ssh实例 - 基本上,一个特定的远程ssh端口转发隧道。我使用的命令是这样的:
ps aux | grep ssh | grep remote-host | grep port-forwarding-stmt
但是,有时这个grep命令实际显示在输出中,因此当前命令字符串在写入时没有用。
我可以使用Mac OS X的工具吗?