我正在使用busybox microcom 程序通过websocket 在2 个jsLinux 实例之间进行通信。一切都很好,使用 microcom 我可以在图像之间聊天。
但是,我还希望将我输入的内容回显给我,而不仅仅是其他人输入的内容。我尝试了类似 tail -f | microcom /dev/ttyS1 但是这不起作用。
我用来连接 2 个实例(通过模拟串行端口)的命令是:microcom /dev/ttyS1
这是busybox microcom 文档:
microcom [-d 延迟] [-t 超时] [-s 速度] [-X] TTY
将 stdin 的字节复制到 TTY 并从 TTY 复制到 stdout
选项:
-d Wait up to DELAY ms for TTY output before sending every
next byte to it
-t Exit if both stdin and TTY are silent for TIMEOUT ms
-s Set serial line to SPEED
-X Disable special meaning of NUL and Ctrl-X from stdin
谢谢。