Created
April 15, 2022 11:29
-
-
Save shaybensasson/2d84131139cdb24cc94d603144501793 to your computer and use it in GitHub Desktop.
Installing bat (cat with wings) on ubuntu < 20
This file contains 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
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