Advertisement
BillEvansAtMariposa

20191103-01

Nov 3rd, 2019
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. set -v
  4. set -v
  5. set -e
  6. cat > alpha.py <<EOD
  7. #!/usr/bin/env python3
  8. def alpha():
  9. if True:
  10. pass
  11. else:
  12. pass
  13. print("did not get a syntax error")
  14. EOD
  15. chmod 700 alpha.py
  16. cat -t alpha.py
  17. ./alpha.py
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement