Skip to content

Instantly share code, notes, and snippets.

@swipswaps
Last active December 21, 2021 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save swipswaps/e417ef24bfa759aad46bb9c3e9461edf to your computer and use it in GitHub Desktop.
Save swipswaps/e417ef24bfa759aad46bb9c3e9461edf to your computer and use it in GitHub Desktop.
//install gh in linux
//Copyright ©2021 by @swipswaps, All rights reserved.
//from computingforgeeks.com/how-to-install-github-cli-on-linux-and-windows
//https://gist.github.com/swipswaps/e417ef24bfa759aad46bb9c3e9461edf
#VERSION=`curl "https://api.github.com/repos/cli/cli/releases/latest" | grep '"tag_name"' | sed -E 's/.*"([^"]+)".*/\1/' | cut -c2-` && echo $VERSION
#wget -c https://github.com/cli/cli/releases/download/v${VERSION}/gh_${VERSION}_linux_amd64.tar.gz && tar xvf gh_${VERSION}_linux_amd64.tar.gz && sudo cp gh_${VERSION}_linux_amd64/bin/gh /usr/local/bin/ && gh version
#gh auth login
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment