//Assignment No-2 Set A: Write a C program that behaves like a shell which displays the command prompt ‘myshell$’. It accepts the command, tokenize the command line and execute it by creating the child process. Also implement the additional command ‘count’ as ⇛ myshell$ count c filename: It will display the number of characters in given file ⇛ myshell$ count w filename: It will display the number of words in given file ⇛ myshell$ count l filename: It will display the number of lines in given file. CODE: 👇 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/types.h> #include <wait.h> char comm[100],*ptr; char *args[10]; int tot; int count(char *option, char *fname); void getcomm(); void sep_arg(); void take_action(); void main() { do { printf("\nCodingLab"); getcomm(); sep_arg(); take_action(); } while(1); } void sep_arg() { int i, j; char *t...