Skip to content

Instantly share code, notes, and snippets.

@cuiweixie
Created November 6, 2025 07:05
Show Gist options
  • Select an option

  • Save cuiweixie/e8a0686e5dfc266929d4c117cbcbd032 to your computer and use it in GitHub Desktop.

Select an option

Save cuiweixie/e8a0686e5dfc266929d4c117cbcbd032 to your computer and use it in GitHub Desktop.
download latest gh cli
# 获取最新版本号
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