shell中某些命令输出不能直接写入管道进行处理,例如nginx -v、python -V,需要重定向输出之后才能进行处理。
nginx -v
python -V
范例1:
#获取nginx版本 [root@proxy opt]# nginx -v 2>&1 |cut -d' ' -f3 nginx/1.20.1
范例2:
#获取python版本 [root@proxy opt]# python -V 2>&1|awk '{print $2}' 2.7.5