Skip to content

Latest commit

 

History

History
42 lines (40 loc) · 1.09 KB

File metadata and controls

42 lines (40 loc) · 1.09 KB

pycat is my version of unix systems 'cat' command, written in python.

How to obtain pycat:

  • From Github:
    • Open your terminal.
    • Clone the repository:
    git clone https://github.com/davibelini/pycat.git/
    • Navigate to the repository:
    cd pycat
  • From the website:
    • Not yet available.

Docs >

  • Commands:

    • read ->

      • SYNTAX:
      pycat read <filepath>
      • DESCRIPTION: prints the content of a readable file to the console.
    • write ->

      • SYNTAX:
      pycat write <filepath> "<text>"
      • DESCRIPTION: appends new content to an ascii file.
    • make ->

      • SYNTAX:
      pycat make <filename>
      • DESCRIPTION: creates an empty file.
    • join ->

      • SYNTAX:
      pycat join <filepath> <filepath>
      • DESCRIPTION: copies second argument file content to another existing file.