Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8437349
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T07:24:20+00:00 2026-06-10T07:24:20+00:00

I really don’t know how to word this question, so I’ll give an example

  • 0

I really don’t know how to word this question, so I’ll give an example of what I’m trying to do.

I have a script where I need to use the sleep function for a few seconds. But before I go to “sleep” I need to have a message say for example “Sleeping… “. But after it’s done sleeping, I need to print “done”. So what the terminal window will look like would be something like this: Sleeping... done, and this is my code for that:

#!/usr/bin/perl

print "Sleeping... ";
sleep(1);
print "done";

But what happens is, the script sleeps, and it then outputs Sleeping... done all at once.

Is it possible to print “Sleeping… “, then actually go to “sleep”, and finally print “done”, but have everything on one line?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T07:24:22+00:00Added an answer on June 10, 2026 at 7:24 am

    You can enable auto flush on the file handle by setting $| to a non-zero value, such as:

    local $| = 1;
    

    So you’re full script would be:

    #!/usr/bin/perl
    
    use strict;
    use warnings;
    
    local $| = 1;
    
    print "Sleeping... ";
    sleep(1);
    print "done";
    

    You can turn it back off by setting $| to 0, which you should do if this is just a small part of a larger script. Output is buffered by default for a reason.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I really don't know how to title this question, but I need some help
I really don't know how to express this question. But what I'm trying to
I have this json object (which i don't really know what is inside) and
I have this problem and really don't know how to solve this. I'm having
Not really sure how to ask this question because I really don't know what
I really don't know where to begin with this question, but the site I'm
I really don't know squat about java memory management, so this is entirely my
I really don't understand this. I have a simple ASP with 3 div in
I'm stuck on a problem I really don't know how to solve: I have
I really don't want to have to reinvent the wheel with this one. There

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.