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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T21:15:37+00:00 2026-05-30T21:15:37+00:00

I am making simple ANSI C program, that simulates Unix shell. So I am

  • 0

I am making simple ANSI C program, that simulates Unix shell. So I am creating child process using fork() and inside child process I am calling exec() to run given (by user) program.

What I need to do is redirect content of file to stdin, so it can be sent to user called program.

Example: cat < file \\user wants run cat and redirect content of that file to it by typing this to my program prompt

I am trying to do so like this:

...child process...

int fd = open(path_to_file, O_RDONLY);

int read_size = 0;
while ((read_size = read(fd, buffer, BUF_SIZE)) != 0) {
    write(STDIN_FILENO, buffer, read_size);
}
close(fd);

execlp("cat", ...);

Everything goes fine, content of file is written to stdin, but after reading whole file, cat still waiting for an input (I need to tell cat, that input ended), but I cannot figure how :-(?

Any ideas? Thanks a lot!!!

  • 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-05-30T21:15:38+00:00Added an answer on May 30, 2026 at 9:15 pm

    Within the child process, redirect the standard input to your open‘ed descriptor prior to calling execlp, via the dup2(2) system call:

    dup2(fd, 0);
    execlp("cat", ...);
    

    You don’t need the while loop in the parent since cat will read from the newly redirected descriptor by itself.

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

Sidebar

Related Questions

How to create simple post/get API making simple calling to GAE database using Google
I'm making simple webcam program using OpenCV 2.3 and got stuck by the compile
I'm making simple webcam program using OpenCV 2.3 and got stuck by the runtime
I'm making a simple program that maintains a list of numbers, and I want
I am making a simple login form that saves to a database using MYSQL.
I'm making simple paint program, and in that program users are able to save
I'm making a simple tool that will get a string of MySQL commands and
I'm making a simple remove link with an onClick event that brings up a
I'm making a simple vim function that counts to n in binary (each number
I am making a simple web browser in Scala 2.9. This is only using

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.