April 2018
Beginner
284 pages
7h 3m
English
Welcome to shell scripting.I love shell scripting.shell scripting is awesome.
Say you run the following command:
$ awk '/awesome$/{print $0}' myfile
How many lines will be printed in the output?
$ awk '/scripting\..*/{print $0}' myfile
$ awk '/^[Ww]?/{print $0}' myfile
$ echo "welcome to shell scripting" | sed -n '/Linux|bash|shell/p'