Python: Simulating Linux command cat

Source: Internet
Author: User

Simulates the Linux cat command, printing the file name entered from the command line

#!/usr/bin/python#filename:cat.pyhelpstring = "This program prints files to the standard output. Any number of the files can be specified. Options include:--version:prints The version number--help:display this "import sysdef ReadFile (filename):    ' ' Print a file to the standard output.    ' f = file (filename) while    True: line        = F.readline ()        if len [line] = = 0: Break            print Line        ,    f.close () #Script start from HEREif Len (SYS.ARGV) < 2:    print ' No action specified. '    Sys.exit () If Sys.argv[1].startswith ('--'):    option = sys.argv[1][2:]    if option = = ' version ' or option = = ' V ': C12/>print ' Version 1.2 '    elif option = = ' help ' or option = = ' h ':        print helpstring    else:        print ' Unknow n option. '    Sys.exit () Else: for    filename in sys.argv[1:]:        readfile (filename) print ' Done '


Python: Simulating Linux command cat

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.