Skip to content

Instantly share code, notes, and snippets.

@mipek
Created January 26, 2013 23:24
Show Gist options
  • Save mipek/4645278 to your computer and use it in GitHub Desktop.
Save mipek/4645278 to your computer and use it in GitHub Desktop.
W3S Jenkins RSS notify-send bash script
#!/bin/bash
url="http://ci.0xf.org/rssAll"
rsstail -u $url -i 300 -n 0 | \
while read line; do
notify-send "$line"|cut -c8-
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment