1.利用 反引号 ` 赋值
temp=`ps -ef|grep mysql|grep -v color|awk '{print $2}'` echo $temp
2.利用$()赋值
temp1=$(ps -ef|grep mysql) echo $temp1
2021-10-18 05:08:26
temp=`ps -ef|grep mysql|grep -v color|awk '{print $2}'` echo $temp
temp1=$(ps -ef|grep mysql) echo $temp1
下一篇:定义防止sql注入的拦截器