mirror of
https://github.com/sbrl/bin.git
synced 2018-01-10 21:33:46 +00:00
18 lines
330 B
Bash
18 lines
330 B
Bash
#!/usr/bin/env bash
|
|
|
|
### Settings ###
|
|
|
|
aliases_url="https://raw.githubusercontent.com/sbrl/bin/master/.bash_aliases";
|
|
|
|
################
|
|
|
|
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}"
|
|
|