Which grep command will print only the lines that do not end with a / in the file foo? seenagape 10 years ago 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: ← Previous question Next question →