<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tuts4Tech &#187; curl</title>
	<atom:link href="http://tuts4tech.net/tag/curl/feed/" rel="self" type="application/rss+xml" />
	<link>http://tuts4tech.net</link>
	<description>Tech Tutorials</description>
	<lastBuildDate>Sun, 18 Jul 2010 01:41:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to update your twitter status using curl</title>
		<link>http://tuts4tech.net/2009/08/08/how-to-update-your-twitter-status-using-curl/</link>
		<comments>http://tuts4tech.net/2009/08/08/how-to-update-your-twitter-status-using-curl/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 01:53:23 +0000</pubDate>
		<dc:creator>Duffy</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[status]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://tuts4tech.net/?p=536</guid>
		<description><![CDATA[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]]></description>
			<content:encoded><![CDATA[<p>Have you ever wanted to update your twitter status from linux command line? Using curl you can do this.</p>
<pre class="brush: plain;">curl -u user:password -d status=”Your status message” http://twitter.com/statuses/update.xml</pre>
<p>Just simply replace user with your username password with your password and  Your status message with the content of your latest tweet</p>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/08/08/how-to-update-your-twitter-status-using-curl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding out what httpd a website uses</title>
		<link>http://tuts4tech.net/2009/06/20/finding-out-what-httpd-a-website-uses/</link>
		<comments>http://tuts4tech.net/2009/06/20/finding-out-what-httpd-a-website-uses/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 18:27:30 +0000</pubDate>
		<dc:creator>Duffy</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://tuts4tech.net/?p=335</guid>
		<description><![CDATA[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 [...]]]></description>
			<content:encoded><![CDATA[<p>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
<pre class="brush: bash;">apt-get install curl</pre>
<p>Then we need to launch it with the switch -I so lets say we want to find out the httpd that tuts4tech.net uses we would type the following
<pre class="brush: bash;">curl -I tuts4tech.net</pre>
<p>Output:
<pre class="brush: plain;">HTTP/1.1 200 OK
Vary: Cookie
Set-Cookie: wordpress_test_cookie=WP+Cookie+check; path=/
X-Pingback: http://tuts4tech.net/xmlrpc.php
Content-Type: text/html; charset=UTF-8
Date: Sat, 20 Jun 2009 17:29:21 GMT
Server: lighttpd/1.4.19</pre>
<p>From the output you can see that we use lighttpd<br />You can also just use this script <a href="http://tuts4tech.net/httpd.php?domain=tuts4tech.net">http://tuts4tech.net/httpd.php?domain=tuts4tech.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/06/20/finding-out-what-httpd-a-website-uses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
