Question: At the command prompt, type vi dirbackup.sh and press Enter to open a new file for editing called dirbackup.sh in your home directory. 7. Enter

 At the command prompt, type vi dirbackup.sh and press Enter to

At the command prompt, type vi dirbackup.sh and press Enter to open a new file for editing called dirbackup.sh in your home directory. 7. Enter the following text into the dirbackup.sh file. As you are typing the contents, ensure that you understand the purpose of each line (reviewing the chapter contents and appropriate man pages as necessary; the tar backup command will be discussed in Chapter 11 and does not require detailed interpretation here). When finished, save and quit the vi editor. #!/bin/bash #This script backs up a directory of your choice if [ $# -ne 1] then echo "Usage is $0 exit 255 fi echo "Performing backup....." sleep 3 tar -zcvf -/backupfile.tar.gz $1 echo "Backup completed successfully to -/backupfile.tar.gz

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!