one-click-installation-script/rust.sh
2022-12-08 20:26:08 +08:00

19 lines
738 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env bash
ver="2022.12.08"
changeLog="一键安装rust加载官方脚本"
clear
echo "#############################################################"
echo -e "# ${YELLOW}融合怪测评脚本${PLAIN} #"
echo "# 版本:$ver #"
echo "# 更新日志:$changeLog#"
echo -e "# ${GREEN}作者${PLAIN}: spiritlhl #"
echo "#############################################################"
echo ""
sudo apt update -y
sudo apt upgrade -y
sudo apt install curl build-essential gcc make -y
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source "$HOME/.cargo/env"
source "$HOME/.profile"
rustc -V