Skip to content

Instantly share code, notes, and snippets.

@pgreze
Created October 6, 2020 06:00
Show Gist options
  • Save pgreze/45e43a21a283f795a2b45f7f10e72e49 to your computer and use it in GitHub Desktop.
Save pgreze/45e43a21a283f795a2b45f7f10e72e49 to your computer and use it in GitHub Desktop.
Provide all remaining bash arguments to a subscript
import sys
print(sys.argv)
v1="$1"
shift
v2="$1"
shift
v3=("$@")
python3 args.py "$v1" "$v2" "${v3[@]}"
$ bash args.sh var1 var2 var3 var4 "hello world"
['args.py', 'var1', 'var2', 'var3', 'var4', 'hello world']
@pgreze
Copy link
Author

pgreze commented Oct 6, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment