Linux

Centos 上是否有通過 udp 發送命令輸出的工具?

  • May 4, 2022

我想將輸出發送watch cat file.txt到 udp 埠​​。已經有東西了嗎?

看看網貓

例如,您可以通過 nc 管道向 UDP 埠 514 發送消息:

echo "They are taking the hobbits .." | nc -w1 -u 192.168.1.1 514

引用自:https://unix.stackexchange.com/questions/701449