Write each answer as an executable script file called # .sh, where -1,2,... You'll upload these files in class in our file server, inside a folder hw2 that you will create in your personal directory. 1. Print the number of words of a sentence of your choice (see echo, the pipeline operator and we with an appropriate flag) 2. Delete the standard output of a process of your choice 3. Delete the standard error of a process of your choice 4. The environment variable PATH contains a colon-separated list (see it for yourself). Print this list to terminal as separate rows (see tr: replace the colons with newline characters) 5. Store the standard output of the program pwd in a shell variable 6. Write a script that reads in two natural numbers from the keyboard and prints their sum to terminal (see read and let). 7. The pipeline operator turns the standard output (aka stdout) of a command into the standard input (aka, stdin) of the next one. How can I turn the standard error (aka stderr), and only that, into the standard input? Do first redirecting stderr to stdout, then redirecting stdout to /devull, then using the pipeline. Do an example with a first command that yields an error (eg, cd to a non-existing directory) and te of some character to another as the second command. 8. Consider the script #!/bin/bash echo This script has $# arguments. echo They are $* Here, $# yields the number of command line arguments given to the script, and S. yields their list. A Change the script so that if no argument is provided, "They are" isn't printed; if exactly 1 argument is provided, ".. 1 argument" rather than "... 1 arguments" is printed. (see if) 9. In many versions of the shell there is a -i argument for cp so that you will be prompted for confirmation if you are about to overwrite a file. Write a script called cpi which will prompt if necessary without using the -i argument, (see test) 10. Create a set of files whose name is of the type file-1.txt, where #goes from 41 to 90. Rename each of them (with another loop) by replacing the dash with an underscore. Write each answer as an executable script file called # .sh, where -1,2,... You'll upload these files in class in our file server, inside a folder hw2 that you will create in your personal directory. 1. Print the number of words of a sentence of your choice (see echo, the pipeline operator and we with an appropriate flag) 2. Delete the standard output of a process of your choice 3. Delete the standard error of a process of your choice 4. The environment variable PATH contains a colon-separated list (see it for yourself). Print this list to terminal as separate rows (see tr: replace the colons with newline characters) 5. Store the standard output of the program pwd in a shell variable 6. Write a script that reads in two natural numbers from the keyboard and prints their sum to terminal (see read and let). 7. The pipeline operator turns the standard output (aka stdout) of a command into the standard input (aka, stdin) of the next one. How can I turn the standard error (aka stderr), and only that, into the standard input? Do first redirecting stderr to stdout, then redirecting stdout to /devull, then using the pipeline. Do an example with a first command that yields an error (eg, cd to a non-existing directory) and te of some character to another as the second command. 8. Consider the script #!/bin/bash echo This script has $# arguments. echo They are $* Here, $# yields the number of command line arguments given to the script, and S. yields their list. A Change the script so that if no argument is provided, "They are" isn't printed; if exactly 1 argument is provided, ".. 1 argument" rather than "... 1 arguments" is printed. (see if) 9. In many versions of the shell there is a -i argument for cp so that you will be prompted for confirmation if you are about to overwrite a file. Write a script called cpi which will prompt if necessary without using the -i argument, (see test) 10. Create a set of files whose name is of the type file-1.txt, where #goes from 41 to 90. Rename each of them (with another loop) by replacing the dash with an underscore