实践模式:一行命令安装
目录
一行命令(1-line script / one line script)安装:
示例
*Nix 下的 Rust 安装
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
要素:
- 安装环境检查
- 系统环境。如系统架构
endianness
大小端
- 执行环境检查
- uname 等
- 下载器
- 验证包
- 安装包
Windows 下的 Scoop
Scoop usage:
scoop install curl
安装
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
# or shorter
iwr -useb get.scoop.sh | iex