Guest User

Untitled

a guest
Nov 16th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. grep [0-9,A-Z] ika
  2.  
  3. $ <<< 'asdf$@12' grep as
  4. asdf$@12
  5. $ <<< 'asdf$@12' grep [0-9,A-Z]
  6. asdf$@12
  7.  
  8. $ <<< 'asdf$@12' grep --color [0-9,A-Z]
  9. asdf$@12
  10.  
  11. $ <<< 'asdf$@12' grep --color -o [0-9,A-Z]
  12. 1
  13. 2
  14.  
  15. $ <<< 'asdf$@12' grep --color -o [0-9,A-Z,a-z]
  16. a
  17. s
  18. d
  19. f
  20. 1
  21. 2
  22. $
Add Comment
Please, Sign In to add comment