RSS

Tag Archive | "curl"

How to update your twitter status using curl

Saturday, August 8, 2009

0 Comments

Have you ever wanted to update your twitter status from linux command line? Using curl you can do this. curl -u user:password -d status=”Your status message” http://twitter.com/statuses/update.xml Just simply replace user with your username password with your password and Your status message with the content of your latest tweet

Continue reading...

Finding out what httpd a website uses

Saturday, June 20, 2009

0 Comments

Have you ever wanted to know what httpd a website is using but didn't know how? this tutorial will be able to show you. You can simply find out the httpd by viewing the servers header. To view the headers we need curl you can install it by running the following command apt-get install curl Then we [...]

Continue reading...

Pastebin from command line

Thursday, May 28, 2009

0 Comments

Have you ever wanted to show data from your command line but couldn't copy it? there is now a solution the script below will allow you to paste the output of commands into the tuts4tech pastebin just copy the script below and save it in /usr/bin/pastebin then you'll be able to do | pastebin e.g [...]

Continue reading...