termux_devenv/install.sh

18 lines
286 B
Bash
Raw Normal View History

2021-07-17 05:05:11 +00:00
#!/bin/bash
apt -y update
apt -y install git vim openssh
mkdir -p ~/src
cd ~/src || exit
if [ -d termux_devenv ]; then
cd termux_devenv || exit
git pull
else
git clone https://git.bitmessage.org/PeterSurda/termux_devenv
fi
cp -u files/bashrc ~/.bashrc
cp -u files/vimrc ~/.vimrc