Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 netcat 的新手,并试图在busybox 中使用与我在电脑中相同的线路。
我想知道如何更改重定向运算符。
nc -w 30 IP 3031 -e <<<"info"
这是错误
-sh: syntax error: redirection unexpected
我认为它不喜欢 <<<,但是我应该将其更改为什么?
顺便说一句,这个脚本通过发送“信息”将它得到的信息扔到屏幕上
只需更改为:
echo "info" | nc - w 30 IP 3031