2020-10-16 17:21:31 +08:00
|
|
|
# 安装wget、curl
|
2020-10-16 17:24:51 +08:00
|
|
|
- Centos
|
2020-10-16 17:17:03 +08:00
|
|
|
```
|
2020-10-16 17:21:31 +08:00
|
|
|
yum update && yum install -y wget curl
|
2020-10-16 17:17:03 +08:00
|
|
|
```
|
|
|
|
|
2020-10-16 17:24:25 +08:00
|
|
|
- Debian
|
2020-10-16 17:17:03 +08:00
|
|
|
```
|
2020-10-16 17:21:31 +08:00
|
|
|
apt update && apt install wget curl -y
|
2020-10-16 17:17:03 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
- Ubuntu
|
|
|
|
```
|
|
|
|
apt-get update && apt-get install wget -y
|
|
|
|
```
|