Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. # Basics
  2.  
  3. ## echo
  4. ```
  5. echo "Heavy drinkers like heavy metal" > metal.txt
  6. ```
  7.  
  8. # Python 3
  9.  
  10. ```
  11. script, my_file = argv
  12. input_file = open(my_file)
  13. my_data = input_file.read()
  14. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement