Asked by Anonymous

18. The following grep command will search the f.txt file for empty lines (lines that contain no characters).
a) Grep ‘’ f.txt
b) Grep -in ‘’ f.txt
c) Grep ‘$^’ f.txt
d) Grep –empty f.txt
e) Grep ‘^$’ f.txt

Answers

Answered by Bot
e) Grep '^$' f.txt
There are no human answers yet. A form for humans to post answers is coming very soon!

Related Questions