calelin 2017-09-01 03:42 采纳率: 0%
浏览 1299
已采纳

linux小白求助:如何编写python程序模拟linux的cat命令?题目具体如下。

%​ ​cat​ ​in
this​ ​is​ ​the​ ​contents​ ​of​ ​in
%​ ​cat​ ​test
this​ ​is​ ​the​ ​contents​ ​of​ ​test
%​ ​python3​ ​cat.py​ ​“in”​ ​“test”
this​ ​is​ ​the​ ​contents​ ​of​ ​in
this​ ​is​ ​the​ ​contents​ ​of​ ​test
需要编写的是cat.py程序,程序是在命令行运行的

  • 写回答

2条回答 默认 最新

  • weixin_39195527 2017-09-01 06:05
    关注

    首先我们先认识一下cat指令的主要功能,如果不加任何参数,cat $file, 就是将文件内容输出到标准输出。

    如果我们所要写的python脚本就是为了实现这一功能,那么就很好办了,以下是样例代码:

    import re
    import sys
    import os
    
    def main():
        """
        """
        file_list = sys.argv[1:]
        for file_name in file_list:
            if os.path.exists(file_name):
                with open(file_name) as file_obj:
                    print file_obj.read()
            else:
                print "File %s doesn't exist!" % file_name
    
    if __name__ == "__main__":
        reload(sys)
        sys.setdefaultencoding("utf-8")
        main()
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥50 关于#html5#的问题:H5页面用户手机返回的时候跳转到指定页面例如(语言-javascript)
  • ¥15 无法使用此凭据登录,因为你的域不可用,如何解决?(标签-Windows)
  • ¥15 yolov9的训练时间
  • ¥15 二叉树遍历没有报错但无法正常运行
  • ¥15 在linux系统下vscode运行robocup3d上场球员报错
  • ¥15 Python语言实验
  • ¥15 SAP HANA SQL 增加合计行
  • ¥20 用C#语言解决一个英文打字练习器,有偿
  • ¥15 srs-sip外部服务 webrtc支持H265格式
  • ¥15 在使用abaqus软件中,继承到assembly里的surfaces怎么使用python批量调动