Linux教程

linux Shell脚本截取字符串

本文主要是介绍linux Shell脚本截取字符串,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

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

 

 

 

 

 

脚本如下:

#!/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 Shell脚本截取字符串的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!