[Solved] CSC3320 Lab 4

$25

File Name: CSC3320_Lab_4.zip
File Size: 122.46 KB

SKU: [Solved] CSC3320 Lab 4 Category: Tag:
5/5 - (1 vote)

Rate this product

Purpose: Practices on the grep, fgrep, egrep, sed , awk, and sort commands for text processing.

Note: Please follow the instructions below, and write a report by answering the questions and upload the report (named as Lab4_P2_FirstNameLastName.pdf or .doc) to the Google Classroom Out of Lab Assignment folder

Please add the lab assignment NUMBER and your NAME at the top of your file sheet. The following table is from Wikipedia. It shows the eleven highest mountains in Georgia.

Brasstown Bald, (summit),4784,feet,Union County Rabun Bald, (summit),4696,feet,Rabun County

Dicks Knob, (summit),4620,feet,Rabun County Hightower Bald, (summit),4568,feet,Towns County

Wolfpen Ridge, (ridge high point),4561,feet,Towns and Union Counties

Blood Mountain, (summit),4458,feet,Union County Tray Mountain, (summit), 4430,feet,Towns County

Grassy Ridge, (ridge high point),4420,feet,Rabun County Slaughter Mountain, (summit),4338,feet,Union County

Double Spring Knob, (summit),4280,feet,Rabun County

Coosa Bald, (summit),4280,feet,Union County

In above table, each line contains 5 fields separated by comma. Open your terminal and connect to snowball server. After that, go to directory Lab4 (cd ~/Lab4) and please download the file mountainList.txt by the following

command (internet access required):

cp /home/bbello1/Public/mountainList.txt mountainList.txt

Be sure it succeeds using ls to see the file name mountainList.txt listed. 1) Use grep to print all lines where the mountains are at Towns or Union

County.

Sample Output

1

2)

3) 4)

Use wc and grep to count the number of mountains located at Rabun County. Hint: please use

pipe | .

Sample Output

Finish task 2) by using only grep.Hint: open the manual page of grep, and check -c option.

A. Type command sed s/ridge high point/r.h.p./p mountainList.txt and execute it. Then attach a screenshot of the output.

5)

6) 7)

B.Type command sed -n s/ridge high point/r.h.p./p mountainList.txt and execute it. Then attach a screenshot of the output.

C. Open the manual page of sed and describe what does n do in sed? D.Describe what does the sed command in (B) do?

Use sed to remove the leading spaces in mountainList.txt and print out the processed lines.

Finish task 5) and save the output to file newList.txt.Use sed to list the lines beginning with white spaces in mountainList.txt.

Sample Output

2 8) Use sed to delete the lines where the mountains are only at Union County

in mountainList.txt.

Sample Output

9) Use sed to remove the middle three fields in each line of mountainList.txt. Hint: Think about the meaning of regex [^,]

sed -r s/,([^,]*){3},/,/g public/mountainList.txt

Sample Output

10) Useawktofinishtask9).

  1. 11) Use sed to insert a new line Table: Eleven highest mountains in Georgia at the beginning of mountainList.txt.
  2. 12) Usesorttoprintoutthesortedlinesinalphabeticalorderaccordingtothenames of mountains.
  3. 13) Usesorttoprintoutthesortedlinesindescendingorderaccordingtotheheight of mountains.
  4. 14) When a pattern groups all or part of its content into a pair of parentheses, it captures that content and stores it temporarily in memory. You can reuse that content if you wish by using a back-reference, in the form:1 or $1, where 1 or $1 reference the first captured group (Refer to [1]). For example, the following command add a colon between Union and County sed -E s/(Union)s(County)/1:2/g mountainList.txtAttach a screenshot of the output of the above sed command.

15) Nowcanyouwriteacommandtofinishtask9)usingsedwithbackreference?

Useful Links:[1] Introducing Regular Expression Capturing Groups and Backreferences

https://www.safaribooksonline.com/library/view/introducingregular-

expressions/9781449338879/ch04.html[2] Drews grep tutorial http://www.uccs.edu/~ahitchco/grep/

[3] Grep and Regular Expressions! http://ryanstutorials.net/linuxtutorial/grep.php [4] Web Scraping with Regular Expressions

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[Solved] CSC3320 Lab 4
$25