-
-
Save lalyos/10364962 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
JUMPER_LIST=$(curl -Ls https://gist.githubusercontent.com/lalyos/10364962/raw/jumper.list) | |
list() { | |
cat <<EOF | |
known jumpers: | |
$JUMPER_LIST | |
EOF | |
} | |
choose() { | |
echo | |
echo "select which jumper to run" | |
echo 'I suggest "mai-ebed"' | |
echo | |
select jmp in $JUMPER_LIST ; do | |
echo you have chosen: $jmp | |
curl -Ls j.mp/$jmp|bash | |
exit 0 | |
done | |
} | |
choose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mai-ebed | |
uberscript | |
tmux-install | |
ambari-single-blueprint | |
public-bucket | |
docker-blog | |
tmux-powerline |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment