Guest User

Untitled

a guest
Jan 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.47 KB | None | 0 0
  1. x101@x101:~/level4$ cat testFile.txt
  2. this is a line
  3. this is also a line
  4. you should ignore this line0.0
  5. you should also ignore this line 0.0
  6. this one you should see
  7. you sh0.0ld see this one
  8.  
  9. x101@x101:~/level4$ cat testFile.txt | grep -v '0.0'
  10. this is a line
  11. this is also a line
  12. this one you should see
  13.  
  14. x101@x101:~/level4$ cat testFile.txt | grep -v '0.0$'
  15. this is a line
  16. this is also a line
  17. this one you should see
  18. you sh0.0ld see this one
  19.  
  20. x101@x101:~/level4$
Add Comment
Please, Sign In to add comment