Question: Task 2.3: Write a script that will create a file that is named when you execute the shell script and direct the o/p of ls

Task 2.3: Write a script that will create a file that is named when you execute the shell script and direct the o/p of ls to that file

1. Open a new file script myshell.sh using vi editor

# vi myshell.sh

2. Type the following lines

#!/bin/bas touch $1 ls > $1

3. Add the execute permission

4. Run the script

# ./myshell.sh testfile

5. Check whether testfile is created

6. Check the contents of the file

7. Run the script again and create a testfile1

show an image for every step being taken. show input and output. and show screen shots.!! I been running the code on the terminal.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!