Skip to content

Instantly share code, notes, and snippets.

@exinmusic
Created September 10, 2021 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save exinmusic/2c447dbdb9a83ab06018f1a92b5f25cb to your computer and use it in GitHub Desktop.
Save exinmusic/2c447dbdb9a83ab06018f1a92b5f25cb to your computer and use it in GitHub Desktop.
#!/usr/bin/python
import sys
arguments = sys.argv[1:]
input_file = arguments[0]
with open(input_file, 'rb') as f:
input_text = f.read()
print(str(input_text))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment