Skip to content

Instantly share code, notes, and snippets.

@alcarraz
Created October 13, 2022 16:25
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 alcarraz/fcce48b7bfaddb2baf7c395267ed433c to your computer and use it in GitHub Desktop.
Save alcarraz/fcce48b7bfaddb2baf7c395267ed433c to your computer and use it in GitHub Desktop.
#!/bin/bash
# URL of the stream
url=$1
# How long to record in seconds
length=$2
# Where to store the recording
file=$3
curl -s $url --retry 10 --retry-max-time 60 --max-time $length >> $file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment