I would like to find a way of creating a bash script (scripts.sh) which will execute different Python and Go scripts inside of itself.
What I want to do is something like this:
#!/bin/bash
URL="https://google.com"
bash scripts.sh URL
which would append the URL parameter to all the scripts called inside the bash script itself.
Let's say I have 2 python scripts and 2 Go scripts to call within the bash with that same parameter coded-in.
python3 script1.py -u URL
python3 script2.py -d URL
goscript -domain URL
goscript2 -d URL
Any ideas on how to achieve this?