Skip to content

Instantly share code, notes, and snippets.

@Swarchal
Created June 30, 2018 07:03
Show Gist options
  • Select an option

  • Save Swarchal/d2bd09cd246a12073acce48da595eb17 to your computer and use it in GitHub Desktop.

Select an option

Save Swarchal/d2bd09cd246a12073acce48da595eb17 to your computer and use it in GitHub Desktop.
writing python within a shell script
#!/bin/bash
MY_ARG="world"
python /dev/stdin "$MY_ARG" << EOF
import sys
print(f"Hello {sys.argv[1]}")
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment