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:
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: