Created
November 6, 2025 07:05
-
-
Save cuiweixie/e8a0686e5dfc266929d4c117cbcbd032 to your computer and use it in GitHub Desktop.
download latest gh cli
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 获取最新版本号 | |
| VERSION=$(curl -s https://api.github.com/repos/cli/cli/releases/latest | grep '"tag_name"' | cut -d'"' -f4 | sed 's/v//') | |
| # 下载 | |
| wget https://github.com/cli/cli/releases/download/v${VERSION}/gh_${VERSION}_linux_amd64.tar.gz | |
| # 解压 | |
| tar -xvf gh_${VERSION}_linux_amd64.tar.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment