Guest User

Untitled

a guest
Apr 20th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. cat -nT index.php |grep 'someregex'
  2.  
  3. $i='echo hi'; $i
  4.  
  5. echo $i > /foo; . /foo
  6.  
  7. $i='cat index.php | grep -P '"'"'MYREGEXHERE'"'"
  8.  
  9. i() { cat -nT index.php |grep 'someregex'; }
  10. i
  11.  
  12. i="cat -nT index.php |grep 'someregex'"
  13. eval "$i"
  14.  
  15. a="cat -nT index.php |grep 'someregex'"
  16. eval "$a"
  17.  
  18. i='echo hi'; $i
Add Comment
Please, Sign In to add comment