2022-05-22 00:53:55 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-08-26 20:43:00 +08:00
|
|
|
set -e
|
2022-05-22 00:53:55 +08:00
|
|
|
|
|
|
|
set_mirror()
|
|
|
|
{
|
2022-11-05 19:45:21 +08:00
|
|
|
MIRROR=${1:-"mirrors.tuna.tsinghua.edu.cn"}
|
|
|
|
MIRROR=${MIRROR//\//\\\/}
|
|
|
|
sed -i "s/dl-cdn.alpinelinux.org/$MIRROR/g" /etc/apk/repositories
|
2022-05-22 00:53:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
apk_add()
|
|
|
|
{
|
|
|
|
apk update
|
|
|
|
|
|
|
|
# mass installation
|
2022-11-16 15:03:08 +08:00
|
|
|
apk add zsh git tmux vim curl wget bash python3 py3-pip htop gcc g++ cmake make fzf perl linux-headers bind-tools iputils man-db coreutils util-linux
|
2022-05-22 00:53:55 +08:00
|
|
|
#for i in {fzf,ripgrep}; do apk add $i -y; done
|
|
|
|
}
|
|
|
|
|
|
|
|
set_timezone()
|
|
|
|
{
|
|
|
|
apk update
|
|
|
|
apk add tzdata
|
|
|
|
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
|
|
|
|
echo "Asia/Shanghai" > /etc/timezone
|
|
|
|
}
|
|
|
|
|
|
|
|
router()
|
|
|
|
{
|
|
|
|
case $1 in
|
|
|
|
apk-add ) apk_add ;;
|
|
|
|
set-timezone | set-tz ) set_timezone ;;
|
2022-11-05 19:45:21 +08:00
|
|
|
set-mirror ) set_mirror $2 ;;
|
2022-05-22 00:53:55 +08:00
|
|
|
* ) echo unknown command "$1". available: apk-add, set-timezone;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
router $@
|