linux Shell脚本截取字符串

例如截取日志信息中的json类型的输入信息:

 

linux Shell脚本截取字符串

 

 

 

 

脚本如下:

#!/bin/sh
IFS=""
testfile=$1
while read -r line
do
    echo $line
    test1=${line##*'签名验证错误'}
    test1=${test1%currentid*}
    echo $test1
    ##res_code=`echo $test1 | python -c 'import sys, json; print(json.load(sys.stdin)['order_complete_time'])'`
    ##echo $res_code
    ##exit
    ##temp= echo $line | cut -d "\""  -f 19
    ##if [ -n "$temp" ]; then
    ##    echo $temp
    ##fi
done < $testfile

 

上一篇:Linux基础命令 - grep


下一篇:在Web.Config文件中使用configSource,避免动态修改web.config导致asp.net重启(另添加一个Config文件用于管理用户数据)