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

  • Home
  • SEARCH
  • 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 8334327
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T03:18:37+00:00 2026-06-09T03:18:37+00:00

I had a similar problem to this with Python using readlines() but I’m not

  • 0

I had a similar problem to this with Python using readlines() but I’m not sure if it’s the same here.

The read command is hanging my bash script.

generate_email()
{
    # --- Arguments
    oldrev=$(git rev-parse $1)
    newrev=$(git rev-parse $2)
    refname="$3"

    # ... some code ...
}

# ... more code ...

while read oldrev newrev refname
do
    generate_email $oldrev $newrev $refname
done

Any ideas on how to fix this?

  • 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-09T03:18:39+00:00Added an answer on June 9, 2026 at 3:18 am

    You’re not telling read to read from anything. So it’s just waiting for input from stdin.

    If you’re wanting to read from a file, you need to use read like so:

    while read -r oldrev newrev refname; do
      generate_email "$oldrev" "$newrev" "$refname"
    done < /path/to/file
    

    Note the < /path/to/file. That’s where you’re actually telling read to read from the file.

    If you’re wanting to read from an input stream, you can use while read like so:

    grep 'stuffInFile' /path/to/file |
    while read -r oldrev newrev refname; do
      generate_email "$oldrev" "$newrev" "$refname"
    done
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I had a similar question before, but this is a few steps beyond that
I recently had a similar thread about this, but now I need to animate
Had a good read through similar topics but I can't quite a) find one
I've had a look at other questions similar to this one but I couldn't
I have found some similar Que's on SO but had not find the solution.
i have seen similar posts here but i have had no luck solving my
I had similar problem few days earlier but now is more complicated. I am
I've read similar threads on here, even googled but no solution. onProgressUpdate() is just
I had similar problem in the post here: Storing objects in an array with
I had a similar question a while back, but with much less of a

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.