Skip to content

Instantly share code, notes, and snippets.

@directentis1
Last active July 1, 2023 04:37
Show Gist options
  • Save directentis1/30391fe409995443b8d98250e5562d89 to your computer and use it in GitHub Desktop.
Save directentis1/30391fe409995443b8d98250e5562d89 to your computer and use it in GitHub Desktop.
HttpToolkit for Linux Installer Script
#!/usr/bin/bash
httptoolkit_latest_release_url=$(curl -s -H "Accept: application/vnd.github+json" https://api.github.com/repos/httptoolkit/httptoolkit-desktop/releases/latest | grep 'browser_' | cut -d\" -f4 | grep '.deb') && wget "$httptoolkit_latest_release_url" -P /home/ubuntu/apps/ && sudo dpkg -i /home/ubuntu/apps/*.deb && rm /home/ubuntu/apps/*.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment