Skip to content

Instantly share code, notes, and snippets.

View Theinatorinator's full-sized avatar
💭
Code, FPGAs, hardware, robotz

Theinatorinator

💭
Code, FPGAs, hardware, robotz
View GitHub Profile
@Theinatorinator
Theinatorinator / List.txt
Created April 13, 2024 22:44
List of words
Be Prepared
Do a Good Turn Daily
Scout's Honor
On My Honor
I Will Do My Best
Leave No Trace
Loyal
Helpful
Friendly
Courteous
  • Use curl to get the JSON response for the latest release
  • Use grep to find the line containing file URL
  • Use cut and tr to extract the URL
  • Use wget to download it
curl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \
  • Use curl to get the JSON response for the latest release
  • Use grep to find the line containing file URL
  • Use cut and tr to extract the URL
  • Use wget to download it
curl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \