Which grep command will print only the lines that do not end with a / in the file foo?

Which grep command will print only the lines that do not end with a / in the file foo?

Which grep command will print only the lines that do not end with a / in the file foo?

A.
grep ‘/#’ foo

B.
grep -v ‘/$’ foo

C.
grep ‘/$’ foo

D.
grep -v ‘/#’ foo

Explanation:



Leave a Reply 0

Your email address will not be published. Required fields are marked *