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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T11:22:08+00:00 2026-06-15T11:22:08+00:00

I have two programs ( Prog1.c and Prog2.c ) written in C and each

  • 0

I have two programs (Prog1.c and Prog2.c) written in C and each of them take one command line argument.

Prog1.c takes a file name as argument , reads content from file and outputs it on the STDOUT (standard output) screen. Prog2.c takes data as argument and does some operation. I want to redirect output of Prog1.c to Prog2.c as input.

I have tried following bash script which gives me error

#!/bin/bash
prog2 "`prog1 file.txt`"  

I have also tried without quotes and in both cases, it gives me following error.

Prog2:: argument list too long.
  • 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-15T11:22:09+00:00Added an answer on June 15, 2026 at 11:22 am

    To get the output of a command as a parameter for another command you can use backticks:

    prog2 "`prog1 file.txt`"
    

    or use $() (I believe this is a more preferred way for bash):

    prog2 "$(prog1 file.txt)"
    

    If you want to use the STDOUT of prog1 as STDIN for prog2 use the | (pipe) operator:

    prog1 | prog2
    

    Note: When you want to use pipes, you need to modify the code of prog2, as it needs to read from STDIN instead of the command arguments (argv of the main() function). See How to read a line from the console in C? for an example on how to do this.

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

Sidebar

Related Questions

I have two programs one of which writes some entries into a file and
I have two programs: one CLI program, and one GUI. The GUI is a
I have two begininer programs, both using the 'while' function, one works correctly, and
I have two very similar programs each trying to run two threads OddThread and
I've got a table recording views of programs. Each program can have two different
I have two programs that call a dll. I want to have them both
I have two programs- First one being a C program that writes in to
Ok I have two programs, and one calls another using executable from another. I
I tried to build two programs with one GNU Makefile by either make prog1
I have two programs written in C++ that use Winsock. They both accept TCP

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.