From 25f3bc2ce88782cac0b49d8cf9d21708cc48181a Mon Sep 17 00:00:00 2001 From: "xiongdian.me" Date: Wed, 9 Nov 2022 12:15:05 +0800 Subject: [PATCH] install.sh: cmake and less --- install.sh | 4 ++-- tools/ubuntu.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 09d20e5..2908945 100755 --- a/install.sh +++ b/install.sh @@ -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 \ No newline at end of file +$BIN diff --git a/tools/ubuntu.sh b/tools/ubuntu.sh index 1b0d33e..d15fbf8 100755 --- a/tools/ubuntu.sh +++ b/tools/ubuntu.sh @@ -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 }