weather.cheat 246 B

1234567891011
  1. % weather
  2. # Show weather info for current location
  3. curl -s "wttr.in" \
  4. | grep -v "New feature" \
  5. | grep -v Follow
  6. # Show weather info for a specific location
  7. curl -s "wttr.in/<location>" \
  8. | grep -v "New feature" \
  9. | grep -v Follow