Advertisement
Guest User

Untitled

a guest
Jul 25th, 2014
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. curl www.site.com | grep stuff | sed "other stuff"
  2.  
  3. curl -s www.site.com
  4.  
  5. curl www.site.com -o file.txt >/dev/null 2>&1
  6. cat file.txt | grep stuff | sed "other stuff"
  7.  
  8. curl -s www.site.com 2>/dev/null | grep stuff | sed "other stuff"
  9.  
  10. curl www.google.com -o /dev/null
  11.  
  12. time (curl www.google.com -o /dev/null)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement