Skip to content

Instantly share code, notes, and snippets.

@taobun
Created July 10, 2020 11:14
Show Gist options
  • Save taobun/1662884589f07612f96bda47d386b2de to your computer and use it in GitHub Desktop.
Save taobun/1662884589f07612f96bda47d386b2de to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
import sys
def main(data):
return data
if __name__ == "__main__":
try:
print(main(*sys.argv[1:]))
except Exception as e:
print(str(e), file=sys.stderr)
sys.exit(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment