QuestionQ12
Essential CommandsWhich grep command prints only the lines in the file foo that do not end with a /?
- A grep '/$' foo
- B grep '/#' foo
- C grep -v '/$' foo
- D grep -v '/#' foo
Which grep command prints only the lines in the file foo that do not end with a /?
Community Discussion