如何在shell中自动按右箭头键?

时间:2015-01-06 00:34:54

标签: bash shell

我想运行此命令

elinks /www/test.html | (then automatically press the right arrow key)

test.html打开elinks后,我希望它自动按下右箭头键。那可能吗 ?我应该使用什么命令来做到这一点?

3 个答案:

答案 0 :(得分:0)

VT100右箭头键转义序列是'\EOC',也许您可​​以使用它?

答案 1 :(得分:0)

<强>解决

elinks -auto-submit 1 /www/test.html

答案 2 :(得分:0)

用户无法理解管道的作用。

command1 | command2将command1的输出发送到command2的输入。不相反。

所以要将转义码发送给elinks:

printf '\E0C' | elinks /www/test.html