Skip to content

Instantly share code, notes, and snippets.

@edisplay
Forked from n0ts/remote_bash.sh
Created November 8, 2022 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edisplay/ef481b995c775d4231def48f02ef35f4 to your computer and use it in GitHub Desktop.
Save edisplay/ef481b995c775d4231def48f02ef35f4 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