#!/bin/sh for f in `find /usr/share/zoneinfo -type f`; do zcity=${f##/usr/share/zoneinfo/} md5=`cat $f | md5` echo "$md5 $zcity" done