bug-coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: countdown in sleep(1)


From: Bob Proulx
Subject: Re: countdown in sleep(1)
Date: Tue, 24 Oct 2006 00:26:02 -0600
User-agent: Mutt/1.5.9i

bobby f wrote:
> I think it is a novel idea to add a countdown option in sleep(1)
> 
> Any comments?

Bloat!  And what type of output?  Everyone would want something
different.  Better to code it yourself.

  for j in $(seq 10 -1 1); do
    printf "$j..."
    sleep 1
  done
  printf "Lift-off.\n"

Bob




reply via email to

[Prev in Thread] Current Thread [Next in Thread]