我想运行此命令
elinks /www/test.html | (then automatically press the right arrow key)
用test.html
打开elinks
后,我希望它自动按下右箭头键。那可能吗 ?我应该使用什么命令来做到这一点?
答案 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