Command line arguments

# [SNIPPET_NAME: Command line arguments]
# [SNIPPET_CATEGORIES: Python Core]
# [SNIPPET_DESCRIPTION: Prints each command line argument per line]
# [SNIPPET_AUTHOR: Tiago Boldt Sousa <[email protected]>]
# [SNIPPET_LICENSE: GPL]

import sys

for x in sys.argv:
	print x