2018-01-31 12:24:51 +00:00
|
|
|
#!/bin/bash
|
2018-03-06 22:07:18 +00:00
|
|
|
|
|
|
|
# install with the following:
|
|
|
|
|
|
|
|
# pkg install curl
|
|
|
|
# curl -fsSL https://raw.githubusercontent.com/sneak/hacks/master/termux/setup.sh | bash
|
|
|
|
|
2018-01-31 12:24:51 +00:00
|
|
|
PKGS="
|
2018-03-06 21:51:08 +00:00
|
|
|
bash-completion
|
2018-01-31 12:24:51 +00:00
|
|
|
byobu
|
2018-03-06 22:07:18 +00:00
|
|
|
curl
|
2018-03-06 21:59:28 +00:00
|
|
|
git
|
2018-03-06 22:07:18 +00:00
|
|
|
golang
|
2018-03-06 21:51:08 +00:00
|
|
|
mosh
|
2018-01-31 12:24:51 +00:00
|
|
|
vim
|
2018-03-06 22:07:18 +00:00
|
|
|
wget
|
2018-01-31 12:24:51 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
apt update
|
|
|
|
apt -y upgrade
|
|
|
|
apt -y install $PKGS
|
2018-03-06 21:59:28 +00:00
|
|
|
apt -y autoremove
|
|
|
|
|
|
|
|
git config --global user.email jp@eeqj.com
|
|
|
|
git config --global user.name "Jeffrey Paul"
|