Skip to content

Instantly share code, notes, and snippets.

@manuelgu
Created February 22, 2016 10:05
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 manuelgu/c4af57bc213f0c961065 to your computer and use it in GitHub Desktop.
Save manuelgu/c4af57bc213f0c961065 to your computer and use it in GitHub Desktop.
Get weather data for your home town in real-time to the terminal
#!/bin/bash
while true
do
# Clear the screen
clear
# Hide the cursor
tput civis
# Fetch data and replace last line for aesthetics
curl -4 -s wttr.in/ham | sed '$d'
# Wait 10 seconds
sleep 10
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment