1
0
Fork 0
mirror of https://github.com/sbrl/bin.git synced 2018-01-10 21:33:46 +00:00
bin/cloudjumper/cloudjumper.sh

19 lines
268 B
Bash
Raw Normal View History

2017-06-09 12:11:20 +00:00
#!/usr/bin/env bash
### Settings ###
aliases_url="?";
################
aliases_tmp_file=$(mktemp --suffix ".cloudjumper.sh");
curl -o "${aliases_tmp_file}" "${aliases_url}"
chmod u+x "${aliases_tmp_file}"
source "${aliases_tmp_file}"
rm "${aliases_tmp_file}"