Skip to content

Instantly share code, notes, and snippets.

@ondrejmo
Created November 10, 2021 20:03
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 ondrejmo/46e1ef91c4869c733447804d27ca776f to your computer and use it in GitHub Desktop.
Save ondrejmo/46e1ef91c4869c733447804d27ca776f to your computer and use it in GitHub Desktop.
Download all asset of the lastest Tasmota release
#!/bin/bash
for i in `curl -s -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/arendst/Tasmota/releases/latest | grep browser_download_url | cut -d '"' -f 4`; do wget ${i}; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment