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 7964477
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T05:54:04+00:00 2026-06-04T05:54:04+00:00

I’m writing a bash script called ‘run’ that tests programs with pre-defined inputs. It

  • 0

I’m writing a bash script called ‘run’ that tests programs with pre-defined inputs.

It takes in a file as the first parameter, then a program as a second parameter.

The call would look like

./run text.txt ./check

for example, the program ‘run’ would run ‘check’ with text.txt as the input. This will save me lots of testing time with my programs.

right now I have

$2 < text.txt > text.created

So it takes the text.txt and redirects it as input in to the program specified, which is the second argument. Then dumps the result in text.created.

I have the input in text.txt and I know what the output should look like, but when I cat text.created, it’s empty.

Does anybody know the proper way to run a program with a file as the input? This seems intuitive to me, but could there be something wrong with the ‘check’ program rather than what I’m doing in the ‘run’ script?

Thanks! Any help is always appreciated!

EDIT: the file text.txt contains multiple lines of files that each have an input for the program ‘check’.

That is, text.txt could contain

asdf1.txt
asdf2.txt
asdf3.txt

I want to test check with each file asdf1.txt, asdf2.txt, asdf3.txt.

  • 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-04T05:54:05+00:00Added an answer on June 4, 2026 at 5:54 am

    A simple test with

    #!/bin/sh
    
    # the whole loop reads $1 line by line
    while read
    do
        # run $2 with the contents of the file that is in the line just read
        xargs < $REPLY $2
    done < $1
    

    works fine. Call that file “run” and run it with

    ./run text.txt ./check
    

    I get the program ./check executed with text.txt as the parameters. Don’t forget to chmod +x run to make it executable.

    This is the sample check program that I use:

    #!/bin/sh
    
    echo "This is check with parameters $1 and $2"
    

    Which prints the given parameters.

    My file text.txt is:

    textfile1.txt
    textfile2.txt
    textfile3.txt
    textfile4.txt
    

    and the files textfile1.txt, … contain one line each for every instance of “check”, for example:

    lets go
    

    or

    one two
    

    The output:

    $ ./run text.txt ./check
    This is check with parameters lets and go
    This is check with parameters one and two
    This is check with parameters uno and dos
    This is check with parameters eins and zwei
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I've got a string that has curly quotes in it. I'd like to replace
I have a French site that I want to parse, but am running into
I want use html5's new tag to play a wav file (currently only supported
In my XML file chapters tag has more chapter tag.i need to display chapters
I am doing a simple coin flipping experiment for class that involves flipping 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.