Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. curl -ik "http://localhost/index.php?username=parto&password=hello!23"
  2.  
  3. username = parto
  4. password = hello!23
  5.  
  6. curl -ik "http://localhost/index.php?username=parto&password=hellosudo apt-get update"
  7.  
  8. >! Start a history substitution, except when followed by a blank,
  9. newline, = or (.
  10. !n Refer to command line n.
  11. !-n Refer to the current command minus n.
  12. !! Refer to the previous command. This is a synonym for `!-1'.
  13. !string
  14. Refer to the most recent command preceding the current
  15. position in the history list starting with string.
  16. !?string[?]
  17. Refer to the most recent command preceding the current
  18. position in the history list containing string. The trailing
  19. ? may be omitted if string is followed immediately by a
  20. newline.
  21. ^string1^string2^
  22. Quick substitution. Repeat the last command, replacing
  23. string1 with string2. Equivalent to ``!!:s/string1/string2/''
  24. (see Modifiers below).
  25. !# The entire command line typed so far.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement