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