Guest User

Untitled

a guest
Dec 12th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. sudo -iu yy echo 'three spaces'
  2.  
  3. /bin/bash -c 'echo three spaces'
  4.  
  5. /bin/bash -c 'bash -c cat << "EOF"\012script-content\012EOF\012'
  6.  
  7. ps awx|grep $$
  8.  
  9. printf 'cat > ... << ... n ...' | sudo -iu yy
  10.  
  11. f=`mktemp`
  12. printf 'command' > "$f"
  13. chmod +r "$f"
  14. sudo -iu yy "$f"
  15. rm "$f"
Add Comment
Please, Sign In to add comment