系统相关
首页 > 系统相关> > nginx -v或python -V等命令结果无法过滤处理

nginx -v或python -V等命令结果无法过滤处理

作者:互联网

shell中某些命令输出不能直接写入管道进行处理,例如nginx -vpython -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

标签:opt,范例,python,nginx,过滤,proxy,root
来源: https://www.cnblogs.com/areke/p/16455616.html