#!/bin/bash
# - bof - #

clear;

# - Read cities from cities.txt file - #
for city in $(cat cities.txt);
do
   weather=$(curl -s http://wttr.in/$city?format=3);
   echo "The weather for $weather";
done

# - eof - #
