diff options
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | README_zh.md | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -92,13 +92,13 @@ If you want to know more, please refer to: [Documents](https://xmake.io/#/gettin #### via curl ```bash -bash <(curl -fsSL https://xmake.io/shget.text) +curl -fsSL https://xmake.io/shget.text | bash ``` #### via wget ```bash -bash <(wget https://xmake.io/shget.text -O -) +wget https://xmake.io/shget.text -O - | bash ``` #### via powershell diff --git a/README_zh.md b/README_zh.md index e9c384b8c..db9a8f0a8 100644 --- a/README_zh.md +++ b/README_zh.md @@ -100,13 +100,13 @@ xmake 官方也推出了一些入门课程,带你一步步快速上手 xmake� #### 使用curl ```bash -bash <(curl -fsSL https://xmake.io/shget.text) +curl -fsSL https://xmake.io/shget.text | bash ``` #### 使用wget ```bash -bash <(wget https://xmake.io/shget.text -O -) +wget https://xmake.io/shget.text -O - | bash ``` #### 使用powershell |
