This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
#Very simple way to create long JS string concatenations from each line in a file | |
#Opens the file given as the first and only argument, and outputs to SDOUT | |
# + '<contents of the line>' | |
#Author: Karl Cordes | |
import sys | |
try: |
NewerOlder