nc 192.168.1.1 端口
example:data1$example:data2$example:data3$example:data1$example:data2$example:data3$
192.168.1.1 端口不停循环返回 example:data1$,example:data2$,example:data3$
想要过滤出 example:data1$,使用命令 nc 192.168.1.1 端口 | grep 'example:data$' 并不成功
grep 'example:data\$'
上面忘打 实际加了跳脱符号 主要问题我觉得是每次返回的数据都不会换行
| tr '$' '$\n' | grep ...?
试了一下 nc 192.1.168.1 端口号 | tr '\$' '\n',现在数据换行打印并不带$符号。但是 | tr '$' '\n' | grep 'example' 就不行。
| sed 's/\$/\$\n/g' | grep …
grep -o 不就好了
问题其实是由 “管道缓冲 ” 引起并非能是管道后面命令能改变的
当使用命令 'nc 192.168.1.1 端口 ' 你能在终端看到连续打印,是因为终端属性是无阻塞的;
当使用管道接收命令输出时,管道具有缓冲 BUFF,而输出信息并无换行,故一直会阻塞直管道 BUFF 满以后右边的命令才会接收到数据;
我记得 cp 这个命令就是这样的,可以使用 stdbuf 这个命令
nc 端口 3>&1 1>&2 2>&3 3>&– >/dev/null | sed 's/\$/\$\n/g' | grep …