mirror of
https://github.com/DictXiong/dotfiles.git
synced 2024-11-24 13:56:59 +08:00
32 lines
630 B
Bash
32 lines
630 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [[ $USER != "root" ]]; then
|
||
|
echo "must run as root!"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
set_mirror()
|
||
|
{
|
||
|
# MIRROR=${1:-"mirrors.tuna.tsinghua.edu.cn"}
|
||
|
# MIRROR=${MIRROR//\//\\\/}
|
||
|
# sed -i 's/(archive|security).ubuntu.com/${MIRROR}/g' /etc/apt/sources.list
|
||
|
echo "to do ..."
|
||
|
}
|
||
|
|
||
|
pacman_S()
|
||
|
{
|
||
|
pacman -Syu
|
||
|
pacman -S tmux git zsh curl vim wget base-devel mingw-w64-x86_64-toolchain make cmake gcc zip unzip
|
||
|
}
|
||
|
|
||
|
router()
|
||
|
{
|
||
|
case $1 in
|
||
|
pacman-S ) pacman_S ;;
|
||
|
set-mirror ) set_mirror $2 ;;
|
||
|
* ) echo unknown command "$1". available: pacman-S, set-mirror ;;
|
||
|
esac
|
||
|
}
|
||
|
|
||
|
router $@
|