Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I need C code for LINUX platform. please give me codes for the below assignment and also answer 4 questions of your code you will

I need C code for LINUX platform. please give me codes for the below assignment and also answer 4 questions of your code you will provide.

image text in transcribedimage text in transcribed

One of the philosophies behind Unix is the motto do one thing and do it well. In this spirit, each shell command usually has a very specific purpose. More complicated commands can be constructed by combining simpler commands in a pipeline such that the output of one command becomes the input to another command. The standard shell syntax for pipelines is to list multiple commands, separated by vertical bars (the pipe character). Your task is to create a system with one parent process and two child processes where the children communicate using a pipe. In the below example the output from the ls -F command is piped to input of the nl command. Use fork(), one form of exec() functions, so that the first child will perform ls -F. and pass the output to the second child using one direction pipe, so the second one can perform nl on the list of current directory contents. Later the second child process will print to the screen the result (see example below). The parent process must wait for its both children. 2 3 file1* file2* dir1. dir2/ 1. What form of exec() function you used? Why? 2. How many times you used fork? Why? 3. How many pipes this assignment required? Why? 4. What form of wait() you used? How many times? One of the philosophies behind Unix is the motto do one thing and do it well. In this spirit, each shell command usually has a very specific purpose. More complicated commands can be constructed by combining simpler commands in a pipeline such that the output of one command becomes the input to another command. The standard shell syntax for pipelines is to list multiple commands, separated by vertical bars (the pipe character). Your task is to create a system with one parent process and two child processes where the children communicate using a pipe. In the below example the output from the ls -F command is piped to input of the nl command. Use fork(), one form of exec() functions, so that the first child will perform ls -F. and pass the output to the second child using one direction pipe, so the second one can perform nl on the list of current directory contents. Later the second child process will print to the screen the result (see example below). The parent process must wait for its both children. 2 3 file1* file2* dir1. dir2/ 1. What form of exec() function you used? Why? 2. How many times you used fork? Why? 3. How many pipes this assignment required? Why? 4. What form of wait() you used? How many times

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions