Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Need some help writing in Bash 5. Store the standard output of the program pwd in a shell variable 6. Write a script that reads

image text in transcribed

Need some help writing in Bash

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 so by 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 (e.g., cd to a non-existing directory), and tr 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 $* yields their list. 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-#.txt, where # goes from 41 to 90. Rename each of them (with another loop) by replacing the dash with an underscore

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