Created
June 10, 2017 05:00
-
-
Save 0xcaff/e45d90f7f361c73e035a36835a694a30 to your computer and use it in GitHub Desktop.
A quick python script which prints arguments passed to it. This is useful to figure out how arguments are being passed.
This file contains 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/env python | |
import sys | |
print(sys.argv) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment