Skip to content

Instantly share code, notes, and snippets.

@directentis1
Created July 15, 2023 09:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save directentis1/53132758a47aaff2490bec2b6de0ecad to your computer and use it in GitHub Desktop.
Save directentis1/53132758a47aaff2490bec2b6de0ecad to your computer and use it in GitHub Desktop.
Download latest insomnia for linux from their repository
#!/bin/bash
wget "https://updates.insomnia.rest/downloads/ubuntu/latest?&app=com.insomnia.app&source=website" -O /tmp/insomnia.deb \
&& sudo apt install /tmp/insomnia.deb -qqy \
&& rm -f /tmp/insomnia.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment