install.sh: cmake and less

This commit is contained in:
xiongdian.me 2022-11-09 12:15:05 +08:00
parent 6dce3cfa18
commit 25f3bc2ce8
2 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ install_dependencies()
case $(get_linux_dist) in
"ubuntu"|"debian" )
$SUDO apt-get update
$SUDO apt-get install -y git zsh bash tmux vim python3 python3-pip curl inetutils-ping
$SUDO apt-get install -y git zsh bash tmux vim python3 python3-pip curl inetutils-ping cmake less
;;
"alpine" )
$SUDO apk update
@ -261,4 +261,4 @@ while [[ $# > 0 ]]; do
esac
shift
done
$BIN
$BIN

View File

@ -17,7 +17,7 @@ apt_install()
for i in {man-db,vim,ca-certificates}; do apt install $i -y; done
# mass installation
apt install git tmux zsh curl wget dialog net-tools dnsutils netcat traceroute sudo python3 python3-pip cron inetutils-ping openssh-client openssh-server htop gcc g++ cmake make zip
apt install git tmux zsh curl wget dialog net-tools dnsutils netcat traceroute sudo python3 python3-pip cron inetutils-ping openssh-client openssh-server htop gcc g++ cmake make zip less
for i in {fzf,ripgrep}; do apt install $i -y; done
}