Use grep to determine how many lines in /etc/services contain the string send. Add the –w (word; Sobell, page 860) option to determine how many lines contain the word send.

What will be an ideal response?

$ grep -c send /etc/services
16
$ grep -c -w send /etc/services
12

Computer Science & Information Technology

You might also like to view...

A(n) ________ is when the field only depends on one part of a composite or concatenated key

A) determinate B) transitive dependency C) partial dependency D) atomic record

Computer Science & Information Technology

To create VBA code for an event, click the ________ button when you are in Design view of a form or report

A) Property B) Code Builder C) Build D) VB Editor

Computer Science & Information Technology