gpt4 book ai didi

java - Linux screen 命令执行不起作用?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:27:59 26 4
gpt4 key购买 nike

我正在通过 java 运行它。

String cmd = "screen -dmS test -X eval \'stuff \"stop \\015\"\'";    

try {
Runtime.getRuntime().exec(cmd);
} catch (IOException e) { e.printStackTrace(); }

它打印为

screen -dmS test -X eval 'stuff "stop\015"'

但是在我试图运行它的 screen 上,我看到了这个:

-X: Missing ' quote.   AND     -X: Missing " quote.  

enter image description here

引号哪里不见了?如果我通过控制台运行该命令,它工作正常。

最佳答案

试试这个:-

String cmd[] = {"screen","-dmS","test","-X","eval", "'stuff","\"stop\\015\"'"};
try {
Runtime.getRuntime().exec(cmd);
} catch (IOException e) { e.printStackTrace(); }

关于java - Linux screen 命令执行不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31558927/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com