Skip to content

Instantly share code, notes, and snippets.

@guillermo
Created February 2, 2013 11:53
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 guillermo/4696984 to your computer and use it in GitHub Desktop.
Save guillermo/4696984 to your computer and use it in GitHub Desktop.
Open all fosdem streams with cvlc
#!/bin/bash
quit()
{
jobs -p | xargs kill
}
trap quit SIGINT
cvlc http://streaming.fosdem.org/fosdem/janson.webm.m3u &
cvlc http://streaming.fosdem.org/fosdem/k-auditorium.webm.m3u &
cvlc http://streaming.fosdem.org/fosdem/ferrer.webm.m3u &
cvlc http://streaming.fosdem.org/fosdem/h1301.webm.m3u &
cvlc http://streaming.fosdem.org/fosdem/h1302.webm.m3u &
wait
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment