Skip to Content
Mastering Linux Shell Scripting - Second Edition
book

Mastering Linux Shell Scripting - Second Edition

by Mokhtar Ebrahim, Andrew Mallett
April 2018
Beginner
284 pages
7h 3m
English
Packt Publishing
Content preview from Mastering Linux Shell Scripting - Second Edition

Questions

  1. What is the output of the following command?
$ awk '
BEGIN{
var="I love AWK tool"
print $var }'
  1. Assume you have the following file:
131522183527

Then you run the following command against this file:

$ awk '{if ($1 > 30) print $2}' myfile 

How many numbers will be printed?

  1. Assume that you have the following file:
135 325 142215 325 152147 254 327

And you run the following command:

$ awk '{
total = 0
i = 1
while (i < 3)
{
total += $i
i++
}
mean = total / 3
print "Mean value:",mean  }' myfile

What is wrong with the previous code?

  1. How many lines will be printed from the following command?
$ awk -F":" '$3 < 1 ' /etc/passwd  
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Learning Linux Shell Scripting - Second Edition

Learning Linux Shell Scripting - Second Edition

Ganesh Sanjiv Naik
Linux Shell Scripting Cookbook - Third Edition

Linux Shell Scripting Cookbook - Third Edition

Clif Flynt, Sarath Lakshman, Shantanu Tushar

Publisher Resources

ISBN: 9781788990554Supplemental Content