#!/usr/bin/env bash # install github-cli VERSION=`curl "https://api.github.com/repos/cli/cli/releases/latest" | grep '"tag_name"' | sed -E 's/.*"([^"]+)".*/\1/' | cut -c2-` echo $VERSION mkdir ~/downloads curl -sSL https://github.com/cli/cli/releases/download/v${VERSION}/gh_${VERSION}_linux_amd64.tar.gz -o ~/downloads/gh_${VERSION}_linux_amd64.tar.gz cd ~/downloads tar xvf gh_${VERSION}_linux_amd64.tar.gz sudo cp gh_${VERSION}_linux_amd64/bin/gh /usr/local/bin/ gh version sudo cp -r ~/downloads/gh_${VERSION}_linux_amd64/share/man/man1/* /usr/share/man/man1/ # man gh gh auth login rm -r ~/downloads
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter