Created
October 6, 2020 06:00
-
-
Save pgreze/45e43a21a283f795a2b45f7f10e72e49 to your computer and use it in GitHub Desktop.
Provide all remaining bash arguments to a subscript
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
import sys | |
print(sys.argv) |
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
v1="$1" | |
shift | |
v2="$1" | |
shift | |
v3=("$@") | |
python3 args.py "$v1" "$v2" "${v3[@]}" |
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
$ bash args.sh var1 var2 var3 var4 "hello world" | |
['args.py', 'var1', 'var2', 'var3', 'var4', 'hello world'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Concatenate arrays: https://stackoverflow.com/a/31143930