My favorites | Sign in
Project Home Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Project Information
Members

Script bash para generar frases de piropos aleatorios en bash Muestra un popup con el contenido unico de un piropo aleatorio.

Bash script to generate random phrases bash compliments Shows a popup with the contents of a single random compliment.

#!/bin/sh

#script created by James Jara (google codes)

#url
url='http://gadget.citasyrefranes.com/gadget_xml.php?t=PI&r=83'

#get data
data=` wget -q -O - $url | sed -n -e 's/.*<texto>\(.*\)<\/texto>.*/\1/p'`

#create notification
notify-send "Frase Piropo" "${data}"
Powered by Google Project Hosting