CSC3320 Lab 6 Solved

35.00 $

Category:
Click Category Button to View Your Next Assignment | Homework

You'll get a download link with a: zip solution files instantly, after Payment

Securely Powered by: Secure Checkout

Description

Rate this product

Purpose: Learn how to correct a shell script and write more

complicated shell scripts.

Part 1:

In order to finish the tasks in this lab, you must connect to

snowball server to copy my checkError.sh

$cp /home/yye10/public/checkError.sh checkError.sh

In Lab 5, you may have tried the shell script checkError.sh in part 3. However, there are four errors on four different lines in that shell

script. Please correct all the four errors by writing down the line number, the error and the correction as below:
Line #: Error: Correction:

Note: please use cat -n to check the line numbers.

$#/bin/bash
/* Check Error Script */

 echo "Try to find out some errors!!!"
 # Seach for the words which can be matched by regex [^a]*ce
 # And save the output to file "Result"
 echo "The regex [^a]*ce can match the string(s):" > Result
 grep '^[^a]*ce$' << END >> Result lance

ace brace

decide piece

-ENDHERE

 # Check the existence of file "Result"
 # Send the content in "Result" to your emailbox
 # $1 is replaced by your campusID
 ls    mail [email protected] < Result

# $1 is replaced by your campusID
echo “The result has been sent to ${1}@student.gsu.edu”
echo “Congratulations! You have corrected all the errors!”

1

Hints:

  •   Following is a sample of the output once all the errors are corrected $ ./checkError.sh ylong4
    Try to find out some errors!!! checkError.sh Result

           The result has been sent to [email protected]
           Congratulations! You have corrected all the errors!
    
  •   You would also receive an email sent from your snowball account once all the errors are corrected.
  •   You may need to use CTRL-C to terminate the execution of the command, especially for the script file with errors.

    Part 2:
    Write a single shell script hello.sh which can finish the list of tasks as below:

  1. Greet user. E.g. Welcome to computer science society.
  2. Contain a comment section with your name, and email address.
  3. Printthedate.
  4. Print the number of directories in /home .
  5. Print the value of variables PATH, USER and SHELL.
  6. Print your disk usage (df).
  7. PrintPlease,couldyouloanme$25.00?
  8. Print if x = 2, x * x = 4 , x / 2 = 1
  9. List all the .sh files with c at the beginning of the file name in current working

10.

directory.
Tell the user Good bye and the current hour (see manual page of date command

refer to the webpage at http://www.thegeekstuff.com/2013/05/date-command-

examples )
Include the content of hello.sh in your answer sheet. Besides, please

also upload hello.sh as a separated file.

Upload your answer sheet to the folder named “Lab 6_P1” of the dropbox in the iCollege

system. Name your file in the format of Lab6_P1_FirstnameLastname.pdf/doc

Hints:

  •   When printing out strings using echo, to escape the special meaning of the meta-

    character, please use back slash \ before the meta-character.

  •   To share files between remote server and the host machine, we can use FileZilla – A FREE FTP. The link to download this application is https://filezilla-

project.org/download.php

2

  • Lab-6-eaowqa.zip