Skip to content

Instantly share code, notes, and snippets.

@resultakak
Forked from n0ts/remote_bash.sh
Created September 12, 2020 17:39
Show Gist options
  • Save resultakak/86f517af2f5bb4165e53b7b443d3fdc1 to your computer and use it in GitHub Desktop.
Save resultakak/86f517af2f5bb4165e53b7b443d3fdc1 to your computer and use it in GitHub Desktop.
execute bash script from remote site
# http://stackoverflow.com/questions/5735666/execute-bash-script-from-url
bash <(curl -s http://mywebsite.com/myscript.txt)
# http://stackoverflow.com/questions/4642915/passing-parameters-to-bash-when-executing-a-script-fetched-by-curl
curl http://foo.com/script.sh | bash -s arg1 arg2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment