Advertisement
Guest User

Untitled

a guest
Aug 30th, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. ### pipe cookie output to stdout with `-c -` and then read cookie from stdin with `-b @-`
  2. ```bash
  3. curl -d "username=user@example.com&password=password" localhost:3000/login -c - | curl -b @- localhost:3000/account
  4. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement