Difference between revisions of "Tutorial11: Sed & Awk Utilities"
(→LINUX PRACTICE QUESTIONS) |
(→LINUX PRACTICE QUESTIONS) |
||
Line 106: | Line 106: | ||
'''Review Questions:''' | '''Review Questions:''' | ||
− | Part A: Display Results from Using the sed Utility | + | '''Part A: Display Results from Using the sed Utility''' |
Note the contents from the following tab-delimited file called '''~murray.saul/uli101/stuff.txt''': | Note the contents from the following tab-delimited file called '''~murray.saul/uli101/stuff.txt''': | ||
Line 125: | Line 125: | ||
− | Write the results of each of the following Linux commands for the above-mentioned file | + | Write the results of each of the following Linux commands for the above-mentioned file: |
+ | |||
# sed -n '3,6 p' ~murray.saul/uli101/stuff.txt<br><br> | # sed -n '3,6 p' ~murray.saul/uli101/stuff.txt<br><br> | ||
Line 131: | Line 132: | ||
# sed '/the/ d' ~murray.saul/uli101/stuff.txt<br><br> | # sed '/the/ d' ~murray.saul/uli101/stuff.txt<br><br> | ||
# sed 's/line/NUMBER/g' ~murray.saul/uli101/stuff.txt | # sed 's/line/NUMBER/g' ~murray.saul/uli101/stuff.txt | ||
+ | |||
+ | |||
+ | '''Part B: Writing Linux Commands Using the sed Utility''' | ||
+ | |||
+ | Write a single Linux command to perform the specified tasks for each of the following questions. | ||
+ | |||
+ | |||
+ | # Write a Linux sed command to display only lines 5 to 9 for the file: ~murray.saul/uli101/stuff.txt<br><br> | ||
+ | # Write a Linux sed command to display only lines the begin the pattern “and” for the file: ~murray.saul/uli101/stuff.txt<br><br> | ||
+ | # Write a Linux sed command to display only lines that end with a digit for the file: ~murray.saul/uli101/stuff.txt<br><br> | ||
+ | # Write a Linux sed command to save lines that match the pattern “line” (upper or lowercase) for the file: ~murray.saul/uli101/stuff.txt and save results (overwriting previous contents) to: ~/results.txt<br><br> | ||
+ | |||
+ | |||
+ | |||
Revision as of 08:11, 19 July 2020
Contents
USING SED & AWK UTILTIES
Main Objectives of this Practice Tutorial
- x
- x
- x
- x
Tutorial Reference Material
Course Notes |
Linux Command/Shortcut Reference |
YouTube Videos | ||
Course Notes:
|
Text Manipulation
|
Man Pages
|
Brauer Instructional Videos: |
KEY CONCEPTS
Manipulating Text
x
Using the sed Utility
x
Using the awk Utility
x
INVESTIGATION 1: USING THE SED UTILITY
In this section, you will learn how to ...
Perform the Following Steps:
- x
In the next investigation, you will ...
INVESTIGATION 2: USING THE AWK UTILITY
In this section, you will learn how to ...
Perform the Following Steps:
- x
In the next investigation, you will ...
INVESTIGATION 3: USING SED & AWK UTILITIES AS FILTERS
In this section, you will learn how to ...
Perform the Following Steps:
- x
LINUX PRACTICE QUESTIONS
The purpose of this section is to obtain extra practice to help with quizzes, your midterm, and your final exam.
Here is a link to the MS Word Document of ALL of the questions displayed below but with extra room to answer on the document to simulate a quiz:
https://ict.senecacollege.ca/~murray.saul/uli101/uli101_week11_practice.docx
Your instructor may take-up these questions during class. It is up to the student to attend classes in order to obtain the answers to the following questions. Your instructor will NOT provide these answers in any other form (eg. e-mail, etc).
Review Questions:
Part A: Display Results from Using the sed Utility
Note the contents from the following tab-delimited file called ~murray.saul/uli101/stuff.txt: (this file pathname exists for checking your work)
Line one. This is the second line. This is the third. This is line four. Five. Line six follows Followed by 7 Now line 8 and line nine Finally, line 10
Write the results of each of the following Linux commands for the above-mentioned file:
- sed -n '3,6 p' ~murray.saul/uli101/stuff.txt
- sed '4 q' ~murray.saul/uli101/stuff.txt
- sed '/the/ d' ~murray.saul/uli101/stuff.txt
- sed 's/line/NUMBER/g' ~murray.saul/uli101/stuff.txt
Part B: Writing Linux Commands Using the sed Utility
Write a single Linux command to perform the specified tasks for each of the following questions.
- Write a Linux sed command to display only lines 5 to 9 for the file: ~murray.saul/uli101/stuff.txt
- Write a Linux sed command to display only lines the begin the pattern “and” for the file: ~murray.saul/uli101/stuff.txt
- Write a Linux sed command to display only lines that end with a digit for the file: ~murray.saul/uli101/stuff.txt
- Write a Linux sed command to save lines that match the pattern “line” (upper or lowercase) for the file: ~murray.saul/uli101/stuff.txt and save results (overwriting previous contents) to: ~/results.txt