Chinaunix首页 | 论坛 | 博客
  • 博客访问: 525406
  • 博文数量: 51
  • 博客积分: 345
  • 博客等级: 民兵
  • 技术积分: 534
  • 用 户 组: 普通用户
  • 注册时间: 2011-03-21 12:02
个人简介

文章分类

全部博文(51)

文章存档

2023年(2)

2022年(1)

2021年(7)

2020年(10)

2019年(2)

2016年(20)

2015年(5)

2014年(1)

2011年(3)

我的朋友

分类: 嵌入式

2019-05-14 13:38:19

#!/bin/bash


set -o errexit
#set -o xtrace


VERSION="1.11"


print_help() {
    echo "Usage: ./golang_install.sh [OPTIONS]"
    echo -e "\nOptions::"
    echo -e "  -i|--install\tInstall Go matches current arch"
    echo -e "  -r|--remove\tTo remove currently installed version"
    echo -e "  -v|--version\tInstall specified version,default version 1.11"
    echo -e "  -h|--help\tDisplay this message"
    echo -e "\nExample::"
    echo -e "  ./golang_install.sh\t\t#Install version 1.11"
    echo -e "  ./golang_install.sh -v XXX\t#Install specified version"
    echo -e "  ./golang_install.sh -r\t#Uninstall Go"
}


remove_golang() {
    rm -rf "$HOME/.go/"
    sed -i '/# GoLang/d' "$HOME/.${shell_profile}"
    sed -i '/export GOROOT/d' "$HOME/.${shell_profile}"
    sed -i '/:$GOROOT/d' "$HOME/.${shell_profile}"
    sed -i '/export GOPATH/d' "$HOME/.${shell_profile}"
    sed -i '/:$GOPATH/d' "$HOME/.${shell_profile}"
    if [ -d "/usr/local/go" ]; then
        echo "Please remove /usr/local/go !"
    fi
}


if [ -n "`$SHELL -c 'echo $ZSH_VERSION'`" ]; then
    # assume Zsh
    shell_profile="zshrc"
elif [ -n "`$SHELL -c 'echo $BASH_VERSION'`" ]; then
    # assume Bash
    shell_profile="bashrc"
fi


if [ -n "$1" ]; then
    case $1 in
        -r|--remove )
    remove_golang
    echo "Go removed..."
    exit 0
            ;;
        -i|--install )
            echo "Install Golang..."
            ;;
-v|--version )
    shift
    if [ -n "$1" ]; then
VERSION=$1
        echo "Go version:$VERSION"
    else
echo "Version is NULL!"
print_help
exit 0
    fi
    ;;
-h|--help )
    print_help
    exit 0
    ;;
        * )
            echo "Invalid parameter: "$1
    print_help
            exit 1
    esac
fi


if test "$(uname -m)" = "aarch64" ; then
    ARCH="arm64";
    DFILE="go$VERSION.linux-arm64.tar.gz"
else
    ARCH="amd64";
    DFILE="go$VERSION.linux-amd64.tar.gz"
fi


if [ -d "$HOME/.go" ] || [ -d "$HOME/go" ]; then
    echo "The 'go' or '.go' directories already exist. Exiting."
    exit 1
fi


echo "Downloading $DFILE ..."
wget -O /tmp/go.tar.gz https://go.dev/dl/$DFILE


if [ $? -ne 0 ]; then
    echo "Download failed! Exiting."
    exit 1
fi


echo "Extracting File..."
tar -C "$HOME" -xzf /tmp/go.tar.gz
mv "$HOME/go" "$HOME/.go"
touch "$HOME/.${shell_profile}"
{
    echo '# GoLang'
    echo 'export GOROOT=$HOME/.go'
    echo 'export PATH=$PATH:$GOROOT/bin'
    echo 'export GOPATH=$HOME/go'
    echo 'export PATH=$PATH:$GOPATH/bin'
} >> "$HOME/.${shell_profile}"


mkdir -p $HOME/go/{src,pkg,bin}
echo -e "\nGo $VERSION was installed.\nMake sure to relogin into your shell or run:"
echo -e "\n\tsource $HOME/.${shell_profile}\n\nto update your environment variables."
echo "Tip: Opening a new terminal window usually just works. :)"
rm -f /tmp/go.tar.gz


阅读(248422) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~