mirror of
https://github.com/sbrl/bin.git
synced 2018-01-10 21:33:46 +00:00
19 lines
268 B
Bash
19 lines
268 B
Bash
|
#!/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}"
|
||
|
|