免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 11232 | 回复: 8
打印 上一主题 下一主题

请教:如何在AWK中调用shell脚本,并在shell中使用AWK的变量 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-03-18 13:48 |只看该作者 |倒序浏览
例如:有一文本list

  1. #cat list
  2. aaaa 123456.12 800001
  3. bbbb 654321.22 800002
  4. ccccc 124686554 800003
  5. dddd -45846456.12 800004
复制代码

希望能生成一个新的文本newlist,效果如下

  1. #cat newlist
  2. aaaa 123,456.12 800001
  3. bbbb 654,321.22 800002
  4. ccccc 124,686,554.00 800003
  5. dddd -45,846,456.12 800004
复制代码

现有数字处理脚本tho.sh:

  1. #cat sho.sh
  2. if test `echo $1 | grep '\.'`
  3.         then
  4.                 head=`echo $1 | cut -d. -f 1`
  5.                 end=`echo $1 | cut -d. -f 2`
  6.                 total=`echo $head | sed -e :a -e 's/\(.*[0-9]\)\([0-9]\{3\}\)/\1,\2/;ta'`.$end
  7.         else
  8.                 total=`echo $1 | sed -e :a -e 's/\(.*[0-9]\)\([0-9]\{3\}\)/\1,\2/;ta'`.00
  9. fi
  10. echo $total
复制代码

脚本使用方法及效果:

  1. #./tho.sh 123456789
  2. 123,456,789.00
复制代码

打算用AWK调用tho.sh把$2改变后输出,但在AWK中用system调用tho.sh后不能把$2传给tho.sh
请多指教,谢谢!!
或者用其他方法实现

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
2 [报告]
发表于 2005-03-18 15:12 |只看该作者

请教:如何在AWK中调用shell脚本,并在shell中使用AWK的变量

system("sh urscript"

论坛徽章:
0
3 [报告]
发表于 2005-03-18 15:27 |只看该作者

请教:如何在AWK中调用shell脚本,并在shell中使用AWK的变量

#对文件中的数字进行格式化,保留小数点两位,整数部分每三位一分割
#用法:awk -f frm_num.awk 目标文件
#文件名:frm_num.awk  

function format_number(STRING,  str,flag,str1,str2,i,j,array) {
           str=STRING       
       
        if(str ~ /^[-+]/){
                flag=substr(str,1,1)
                str=substr(str,2)
        }else
                flag=""
       
        i=index(str,"\."
        if(i>0){
                str2=substr(str,i+1)
                str1=substr(str,1,i-1)
               
                if(length(str2)>2)
                        str2=substr(str2,1,2)
                else if(length(str2)<2)
                        str2=str2 "0"               
                       
                str2="\." str2               
        } else{
                str1=str
                str2="\.00"
        }
       
        i=0
        while(length(str1)>3){
                array[++i]=substr(str1,length(str1)-2,3)
                str1=substr(str1,1,length(str1)-3)
        }       
        array[++i]=str1
       
        str1=""
        for(j=i;j>0;j--){
                str1=str1 array[j]
                if(j>1) str1=str1 ","                       
        }
       
        str=flag str1 str2
       
        return str       
}

{
        for(m=1;m<=NF;m++)       
        {               
                if($m ~ /[-+]?[0-9]+(\.[0-9]+)?/)
                        $m=format_number($m)               
        }
       
        print
}

论坛徽章:
0
4 [报告]
发表于 2005-03-18 15:41 |只看该作者

请教:如何在AWK中调用shell脚本,并在shell中使用AWK的变量

[quote]原帖由 "寂寞烈火"]system("sh urscript"[/quote 发表:

谢谢烈火兄,能不能再教我如何在 system("sh urscript"里面带一个AWK里的变量$2,就好像这样system("sh urscript $2"--显然这样不行,有没有其它办法!!
谢谢!!

论坛徽章:
0
5 [报告]
发表于 2005-03-18 15:45 |只看该作者

请教:如何在AWK中调用shell脚本,并在shell中使用AWK的变量

原帖由 "梦蓝" 发表:
)
                        $m=format_number($m)               
        }
       
        print
}


谢谢梦蓝的脚本!
但有时候我并不需要对所有的数字进行格式化,比如帐号等,而只需改变其中的一列或几列,有没有更好的办法!!
谢谢!!

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
6 [报告]
发表于 2005-03-18 16:26 |只看该作者

请教:如何在AWK中调用shell脚本,并在shell中使用AWK的变量

to () {
echo $1|rev|sed 's/.../&,/g;s/,$//;s/^/00\./'|rev}
[/code]

论坛徽章:
0
7 [报告]
发表于 2005-03-18 17:16 |只看该作者

请教:如何在AWK中调用shell脚本,并在shell中使用AWK的变量

#对文件中的数字进行格式化,保留小数点两位,整数部分每三位一分割
#用法:awk -f frm_num.awk 列号列表 目标文件
#最后一个参数为目标文件,其他为列号;没有列号则对所有数据格式化
#如:awk -f frm_num.awk 1 2 3 4 "a.txt"
#文件名:frm_num.awk  

function format_number(STRING,  str,flag,str1,str2,i,j,array) {
           str=STRING       
       
        if(str ~ /^[-+]/){
                flag=substr(str,1,1)
                str=substr(str,2)
        }else
                flag=""
       
        i=index(str,"\."
        if(i>0){
                str2=substr(str,i+1)
                str1=substr(str,1,i-1)
               
                if(length(str2)>2)
                        str2=substr(str2,1,2)
                else if(length(str2)<2)
                        str2=str2 "0"               
                       
                str2="\." str2               
        } else{
                str1=str
                str2="\.00"
        }
       
        i=0
        while(length(str1)>3){
                array[++i]=substr(str1,length(str1)-2,3)
                str1=substr(str1,1,length(str1)-3)
        }       
        array[++i]=str1
       
        str1=""
        for(j=i;j>0;j--){
                str1=str1 array[j]
                if(j>1) str1=str1 ","                       
        }
       
        str=flag str1 str2
       
        return str       
}

BEGIN{
        for(i=1;i<ARGC-1;i++){
                col_list[ARGV]=""
                delete ARGV
        }
       
        if(ARGC<=2)
                flag=0       
        else
                flag=1
}

{
        for(m=1;m<=NF;m++)       
        {               
                if((flag==0 || m in col_list) && $m ~ /[-+]?[0-9]+(\.[0-9]+)?/)
                        $m=format_number($m)               
        }
       
        print
}

论坛徽章:
0
8 [报告]
发表于 2009-10-13 15:27 |只看该作者

回复 #4 RealRaul 的帖子

system("sh urscript "$2)
这样就可以了

论坛徽章:
5
2015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:50:282015年亚洲杯之朝鲜
日期:2015-03-13 22:47:33IT运维版块每日发帖之星
日期:2016-01-09 06:20:00IT运维版块每周发帖之星
日期:2016-03-07 16:27:44
9 [报告]
发表于 2009-10-13 15:35 |只看该作者
老贴老问题!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP