我正在尝试发送一个命令,netcat
该命令将产生输出,并且我想将该输出保存到文件中。
while true; do echo "showHistory userx"; done | nc -w1 xxx.xxx.xxx.xx 2222 > out.txt &
我尝试了很多谷歌搜索并阅读了很多stackexchange问题但无法解决。我玩过while
, tee
,mkfifo
但没有运气。
该文件out.txt
仍然是空白的,但有很多NUL
字符
编辑:我已更新showhistory
到showHistory userx
以强调它是通过 telnet/netcat 会话提供的命令