使用 ganymed SSH2 发送 SIGINT CTRL-C?
我需要终止使用 ganymed SSH2 开始的进程。具体来说,我想使用 Ctrl+C 优雅地杀死它。我已经看到尝试发送 ASCII \x03
的想法,但是当使用 execCommand() 时,它不会采用转义字符。如何通过 ganymed 发送 Ctrl+C SIGINT?
如果我应该使用另一个 Java SSH 应用程序,请告诉我,我已经研究过 Jsch、sshj,但发现 ganymed ssh2 是最简单的。
我试图杀死的程序是 tethereal (wireshark)
I need to kill a process that I have started using ganymed SSH2. Specifically I would like to gracefully kill it using Ctrl+C. I have seen ideas of trying to send ASCII \x03
but when using the execCommand() it wont take escaped chars. How can I send Ctrl+C SIGINT through ganymed?
If there is another Java SSH app I should be using let me know, I have looked into Jsch, sshj but just found ganymed ssh2 to the be easiest.
The program i am trying to kill is tethereal (wireshark)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已将其与 JSch 一起使用,成功发送 Ctrl+C:
I've used this with JSch to successfully send Ctrl+C: