Guest User

Untitled

a guest
Oct 20th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. *^%Q&$*&^@$&*!^@$*&^&^*&^&
  2.  
  3. grep -F $'r' application.log
  4.  
  5. grep -F "$(printf 'r')" application.log
  6.  
  7. $ printf "arb" | grep -F $'r' | hexdump -c
  8. 0000000 a r b n
  9.  
  10. -F, --fixed-strings
  11. Interpret PATTERN as a list of fixed strings, separated by newlines, any of which is to be matched. (-F is specified
  12. by POSIX.)
Add Comment
Please, Sign In to add comment