Skip to content

Instantly share code, notes, and snippets.

@dnnnp
Last active March 4, 2022 18:34
Show Gist options
  • Save dnnnp/fd7d23e58a8b7a96662b4b16e17ecaaf to your computer and use it in GitHub Desktop.
Save dnnnp/fd7d23e58a8b7a96662b4b16e17ecaaf to your computer and use it in GitHub Desktop.
install bat on amd64 system
#!/bin/bash
curl -sLo bat.deb $(curl -sL https://api.github.com/repos/sharkdp/bat/releases/latest | grep -Po '"browser_download_url": "\K.*?(?=")' | grep 'amd64.deb' | grep -v musl)
sudo apt install ./bat.deb
rm bat.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment