sed 和read line用法

简介:
sed -i "s/`echo -e \\\t`/,/g"  123456.txt


      
         cat ./ 123456 .txt | while read line 
         do
           sd=`echo $line |awk -F, '{print  (($4-$3))}' `

           a=`echo $line |awk -F, '{print  $1}' `

         DAYLEN2=$(($(($sd))/86400))

         echo $a "开通" $DAYLEN2 "天" 
      done









本文转自 chengxuyonghu 51CTO博客,原文链接:http://blog.51cto.com/6226001001/1587982,如需转载请自行联系原作者
目录
相关文章
|
Shell Linux
Linux中常用的文本处理命令(echo、sort、uniq、tr、cut、split、eval)(上)
1、echo命令——输出 echo 命令主要用来显示字符串信息。
372 0
rep-wc-管道符 grep [-n ] 关键字 文件路径,grep -n “code“ test.txt,grep -n “code“ test.txt 显示行号的写法,wc test.txt全
rep-wc-管道符 grep [-n ] 关键字 文件路径,grep -n “code“ test.txt,grep -n “code“ test.txt 显示行号的写法,wc test.txt全
|
Linux iOS开发 MacOS
报错 sed: 1: extra characters at the end of d command
报错 sed: 1: extra characters at the end of d command
541 0
|
Linux Shell
Linux中常用的文本处理命令(echo、sort、uniq、tr、cut、split、eval)(下)
1、echo命令——输出 echo 命令主要用来显示字符串信息。
251 0
|
Python
6.4 file 的 with 用法
#!/usr/bin/env python # -*- coding:utf-8 -*- #@Time      :2017/10/28 9:13 #@Author    :zhouyuyao #@File      :file_with.
776 0
|
SQL 缓存 Oracle
[20180226]exp buffer RECORDLENGTH.txt
[20180226]exp buffer RECORDLENGTH.txt --//虽然已经很少使用exp导致,如果加入direct=y参数,设置RECORDLENGTH参数能加快数据导出.
1262 0