#!/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