今天有个命令用netstat -ano|findstr “4444” 查看端口使用情况,
然后就提示-bash: findstr: command not found,大概意思就是没有findstr命令
百度没有找到相关解决办法,后来把findstr 改成grep 成功获取到信息
netstat -ano|grep “4444”
今天有个命令用netstat -ano|findstr “4444” 查看端口使用情况,
然后就提示-bash: findstr: command not found,大概意思就是没有findstr命令
百度没有找到相关解决办法,后来把findstr 改成grep 成功获取到信息
netstat -ano|grep “4444”