博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python调用linux shell脚本,并返回结果一例
阅读量:6276 次
发布时间:2019-06-22

本文共 1828 字,大约阅读时间需要 6 分钟。

#!/usr/bin/python
#-*- coding:cp936 -*-
import re;
import os;
import sys;
if(__name__=="__main__"):
    p=re.compile('(^\s+|\s+$)');
    pdigit=re.compile('^\d+');
    delimiter='\t';
    strdict='dict.dat';
    strcontigency='contigency.dat';
    str_input=str(sys.argv[1]);
    str_weight=str(sys.argv[2]);
    str_output=str(sys.argv[3]);
    fid_input=file(str_input,'r');
    fid_output=file(str_output,'w');
    keywords=[];
    keywordstmp=fid_input.readlines();
    for m in keywordstmp:
        mykey=p.sub('',m);
        keywords.append(mykey);
    for  keyword in keywords:
        results=[]; 
       #results.append(keyword);
        command='';
        command='grep -n ^%s$  %s'%(keyword,strdict);
        tmpcol=os.popen(command).readlines();
        temp=p.sub('',tmpcol[0]);
        temps=temp.split(':');
        linenum=int(temps[0])+1;  
        command="sed -n '%dp' %s"%(linenum,strdict);
        tmpcol=os.popen(command).readlines();
        temp=p.sub('',tmpcol[0]) ;#indicate howmany docs key indexed;
        totalindexed=temp;
        #results.append(temp);
        command='grep -n ^%s$  %s'%(keyword,str_weight);
        tmpcol=os.popen(command).readlines();
        temp=p.sub('',tmpcol[0]);
        temps=temp.split(':');
        linenum=int(temps[0])+2;  
        command="sed -n '%dp' %s"%(linenum,str_weight);
        tmpcol=os.popen(command).readlines();
        temp=p.sub('',tmpcol[0]) ;
        temps=temp.split(' ');
        myclass=temps[0]
        #results.append(myclass);
        command="grep -n '^%s %s' %s"%(keyword,myclass,strcontigency);
        tmpcol=os.popen(command).readlines();
        temp=p.sub('',tmpcol[0]);
        temps=temp.split(':');
        temp1=p.sub('', temps[1]);
        results=temp1.split(' ');
        results.append(totalindexed);
        #numin=m[1];
        #numnotin=m[2];
        #print numin;
        #print numnotin;
        #print results
        #s=raw_input('please enter');
        #results.append(numin);
        #results.append(numnotin);
        myline=delimiter.join(results);
        fid_output.write(myline);
        fid_output.write('\n');
        print myline;
    fid_input.close();
    fid_output.close();
    print '%s has finished, congratulations!'%str(sys.argv[0]);

转载地址:http://vygpa.baihongyu.com/

你可能感兴趣的文章
Linux下的lds链接脚本简介(二)
查看>>
入门到进阶React
查看>>
C++每日练笔之日期类(基类)
查看>>
SVN 命令笔记
查看>>
修复Postfix 的Relay access denied问题
查看>>
检验手机号码
查看>>
thinkphp3.1随机取数据库中几条记录
查看>>
重叠(Overlapped)IO模型
查看>>
ffmpeg study 1
查看>>
Git使用教程
查看>>
使用shell脚本自动监控后台进程,并能自动重启
查看>>
Flex&Bison手册
查看>>
java对象--继承的好处和特点
查看>>
MySQL 5.6 for Windows 解压缩版配置安装
查看>>
solrCloud+tomcat+zookeeper集群配置
查看>>
/etc/fstab,/etc/mtab,和 /proc/mounts
查看>>
Apache kafka 简介
查看>>
socket通信Demo
查看>>
技术人员的焦虑
查看>>
js 判断整数
查看>>