use strict; use warnings; print "How long should I sleep, in hours? "; my $wait = ; ($wait) = $wait =~ /(\d+)/; $wait -= 0; my $end = time() + $wait * 3600; sleep 1 while time() < $end; print "FINISHED";