我有一个linux驱动的板,我想在上面捕获telnet输出到一个文件。我试着做了如下所示-
telnet localhost xxxx >> /mnt/sd-xxx/log/file.txt &
以及
telnet localhost xxxx | tee /mnt/sd-xxx/log/file.txt &
和
telnet localhost xxxx -f /mnt/sd-xxx/log/file.txt &
但在上述所有情况下,它都不能作为背景。我也试图将它保存在脚本中,但这也不起作用,程序崩溃。如何捕获telnet输出并将其作为后台进程运行以重定向到文件。
提前谢谢。
最佳答案
你试过卷发吗?
curl telnet://localhost:xxxx >> /mnt/sd-xxx/log/file.txt &
关于linux - 通过在后台运行将Telnet输出捕获到文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19268832/