Changes

Jump to: navigation, search

Tutorial11: Sed & Awk Utilities

10 bytes removed, 10:16, 25 July 2020
INVESTIGATION 2: USING THE AWK UTILITY
# Issue the following linux command to display the car make, year and quantity of all car makes that begin with the letter 'f':<br><span style="color:blue;font-weight:bold;font-family:courier;">awk '$1 ~ /^f/ {print $1,$2,$4}' cars.txt</span><br><br>Compound criteria symbols can be used to join search statements together<br><br>Compound Operators:<br><br>'''&&''' &nbsp;&nbsp;&nbsp;&nbsp;(and)<br>'''||''' &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(or)<br><br>
# Issue the following linux command to list all "fords" that are greater than $10,000 in price:<br><span style="color:blue;font-weight:bold;font-family:courier;">awk '$1 ~ /ford/ && $5 > 10000 {print $0}' cars.txt</span><br><br>
# x
 
 
 
 
 
 
# After you complete the Review Questions sections to get additional practice, then work on your<br>online assignment 3.
<br><br>
13,420
edits

Navigation menu