Write a C program to execute multiple Unix commands inparallel
. • The number of Unix commands is not fixed. • There is nocommunication among the Unix commands. • The Unix commands aregiven as command line arguments. • For simplicity, you can assumethat each Unix command has exactly one argument except that thelast one can have either no argument or one argument
. For example, >>>>> miniminishell cat openfile.cls –t ps includes three Unix commands: cat with one argumentopenfile.c, ls with one argument –t, and ps with no argument.
For each Unix command, use a separate child process to executeit. You need to print out each process id.
Expert Answer
Answer to Write a C program to execute multiple Unix commands in parallel . • The number of Unix commands is not fixed. • Ther…