Question: Exercise #3-reverse.sh-version #1 We want a bash script named reverse.sh which is able, given two words as positional parameters, to display them in reverse order.

Exercise #3-reverse.sh-version #1 We want a bash script named reverse.sh which is able, given two words as positional parameters, to display them in reverse order. Here is an example of how it would be used; tux@LinuxBox > ./reverse.sh first next next first tux@LinuxBox ? To do so, write and test a Bash Script which will; Assign its first parameter to a variable named FIRST Assign its second parameter to a variable named SECOND Displays these two variables one after the other, starting with SECOND Use two echo statements, one for displaying each of the variables
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
