This commit is contained in:
Sam Sesh 2023-06-13 18:21:33 +03:30 committed by ginuerzh
parent b48d2c0dbc
commit 98c9cc2821
3 changed files with 5 additions and 5 deletions

View File

@ -44,11 +44,11 @@ Google讨论组[https://groups.google.com/d/forum/go-gost](https://groups.goo
```bash ```bash
# 安装最新版本 https://github.com/go-gost/gost/releases](https://github.com/go-gost/gost/releases # 安装最新版本 https://github.com/go-gost/gost/releases](https://github.com/go-gost/gost/releases
sudo bash <(curl -fsSL https://github.com/samsesh/gost/raw/master/install.sh) --install bash <(curl -fsSL https://github.com/samsesh/gost/raw/master/install.sh) --install
``` ```
```bash ```bash
# 选择要安装的版本 # 选择要安装的版本
sudo bash <(curl -fsSL https://github.com/samsesh/gost/raw/master/install.sh) bash <(curl -fsSL https://github.com/samsesh/gost/raw/master/install.sh)
``` ```

View File

@ -41,11 +41,11 @@ Legacy version: [v2.gost.run](https://v2.gost.run/en/)
```bash ```bash
# install latest from https://github.com/go-gost/gost/releases](https://github.com/go-gost/gost/releases # install latest from https://github.com/go-gost/gost/releases](https://github.com/go-gost/gost/releases
sudo bash <(curl -fsSL https://github.com/samsesh/gost/raw/master/install.sh) --install bash <(curl -fsSL https://github.com/samsesh/gost/raw/master/install.sh) --install
``` ```
```bash ```bash
# select version for install # select version for install
sudo bash <(curl -fsSL https://github.com/samsesh/gost/raw/master/install.sh) bash <(curl -fsSL https://github.com/samsesh/gost/raw/master/install.sh)
``` ```
### From source ### From source

View File

@ -73,7 +73,7 @@ install_gost() {
echo "Installing gost..." echo "Installing gost..."
tar -xzf gost.tar.gz tar -xzf gost.tar.gz
chmod +x gost chmod +x gost
sudo mv gost /usr/local/bin/gost mv gost /usr/local/bin/gost
echo "gost installation completed!" echo "gost installation completed!"
} }