Skip to content

Instantly share code, notes, and snippets.

@shaybensasson
Created April 15, 2022 11:29
Show Gist options
  • Save shaybensasson/2d84131139cdb24cc94d603144501793 to your computer and use it in GitHub Desktop.
Save shaybensasson/2d84131139cdb24cc94d603144501793 to your computer and use it in GitHub Desktop.
Installing bat (cat with wings) on ubuntu < 20
curl -s https://api.github.com/repos/sharkdp/bat/releases/latest \
| grep "browser_download_url.*amd64.deb" \
| grep "bat-musl_" \
| cut -d : -f 2,3 \
| tr -d \" \
| wget -P "$TempFileDirectory" -qi - &&
sudo dpkg -i bat-musl*_amd64.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment