Guest User

Untitled

a guest
Oct 18th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. [jcp@nb-invoice1 jcp]$ cat 1 2 3
  2. 123
  3. 234
  4. 456
  5. [jcp@nb-invoice1 jcp]$ ls
  6. 1 2 3
  7. [jcp@nb-invoice1 jcp]$ grep -vl 1 *
  8. 2
  9. 3
  10. [jcp@nb-invoice1 jcp]$ grep --version
  11. GNU grep 2.6.3
  12.  
  13.  
  14.  
  15. jcp@dodge:~/t $ cat 1 2 3
  16. 123
  17. 345
  18. 888
  19. jcp@dodge:~/t $ grep --version
  20. grep (GNU grep) 2.5.1
  21.  
  22. Copyright 1988, 1992-1999, 2000, 2001 Free Software Foundation, Inc.
  23. This is free software; see the source for copying conditions. There is NO
  24. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  25.  
  26. jcp@dodge:~/t $ grep -vl 3 *
  27. 3
  28. jcp@dodge:~/t $ grep -vl 2 *
  29. 2
  30. 3
Add Comment
Please, Sign In to add comment