From owner-freebsd-questions Sat Jun 6 02:23:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA11659 for freebsd-questions-outgoing; Sat, 6 Jun 1998 02:23:17 -0700 (PDT) (envelope-from owner-freebsd-questions@FreeBSD.ORG) Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA11635 for ; Sat, 6 Jun 1998 02:23:10 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.0/8.9.0) with ESMTP id SAA00805; Sat, 6 Jun 1998 18:53:07 +0930 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.0/8.9.0) id SAA11433; Sat, 6 Jun 1998 18:53:06 +0930 (CST) Message-ID: <19980606185306.C10084@freebie.lemis.com> Date: Sat, 6 Jun 1998 18:53:06 +0930 From: Greg Lehey To: Joe Marcus Clarke Cc: FreeBSD Questions Subject: Re: Clock program References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: ; from Joe Marcus Clarke on Sat, Jun 06, 1998 at 04:57:49AM -0400 WWW-Home-Page: http://www.lemis.com/~grog Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 X-Mutt-References: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 6 June 1998 at 4:57:49 -0400, Joe Marcus Clarke wrote: > I'm looking for a clock program that can tell time in multiple time zones. > For instance, I want to have a clock window on my desktop for North > Carolina, California, London, Brussels, and Sydney. Any one know of a > program that can do this? Thanks. /bin/sh? tput cl while [ 1 ]; do echo -n "South Carolina "; TZ=America/New_York date echo -n "California "; TZ=America/Los_Angeles date echo -n "London "; TZ=Europe/London date echo -n "Sydney "; TZ=Australia/Sydney date sleep 1 tput ho done Greg -- See complete headers for address and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message