我想用 bash 脚本制作一个程序,它可以检查我机器中是否有来自特定端口的字符串数据。你能帮我做这个编程吗?谢谢... *抱歉我的英语不好
示例:*我的机器端口7090,如果在该端口接收到字符串数据,则执行一行bash程序,否则执行另一个程序
if(there is a string data in port)
{
read data from that port
}
else
{
print data to another port
}
如何制作 bash 脚本来检查“端口中有字符串数据”?