Last active
July 1, 2023 04:37
-
-
Save directentis1/30391fe409995443b8d98250e5562d89 to your computer and use it in GitHub Desktop.
HttpToolkit for Linux Installer Script
This file contains hidden or 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
#!/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