windows 如何使用awk grep
GnuWin - Browse Files at SourceForge.net
经常用linux下的grep命令,比如:
netstat -an|grep 1521
其实windows下也有一个类似的命令findstr,比如:
C:\Windows\system32>netstat -an|findstr 1521
当然windows下还有一个find命令,比如:
C:\Windows\system32>netstat -an|find "1521"
两个命令的区别是find需要用引号引起来。
https://blog.csdn.net/icanlove/article/details/37567253
还没有评论,来说两句吧...