将命令发送到Konsole终端

时间:2010-12-27 23:54:30

标签: konsole

我希望能够在RedHat 5中启动Konsole时发送命令。例如。

$ konsole -e "sleep 30"

正在发生的事情是“睡眠30”正在成为标题,我收到错误说

Konsole is unable to open a PTY (pseudo teletype). It is likely that this is due to an incorrect configuration of the PTY devices. Konsole needs to have read/write access to the PTY devices."

我该怎么做?

1 个答案:

答案 0 :(得分:1)

忽略引号。假设Konsole的-e选项的作用类似于xterm和其他',-e之后的第一个参数是要执行的命令名,而其余的参数将传递给命令。所以你试图运行一个名为sleep 30而不是sleep的程序。

如果这是问题,则错误消息看起来值得一个错误报告。它应该抱怨没有执行命令。