Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
print "Shutting down in:\n";
$|++;
for (reverse (0..20)) {
if ($_ < 10) {
print "\r*** DANGER! ALL DATA WILL BE ERASED IN $_ SECONDS! PRESS Ctrl^C TO ABORT ***";
}
else {
printf "\r%d ",$_;
}
sleep 1;
}
CJason said:Thanks guys...those work like a charm! For some reason, I can't find that "\r" option anywhere in my Perl book!?!?!?