<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: How to Twitter from Terminal on the Mac</title>
	<atom:link href="http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/</link>
	<description></description>
	<pubDate>Tue, 14 Oct 2008 15:40:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Bonnie</title>
		<link>http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-2548</link>
		<dc:creator>Bonnie</dc:creator>
		<pubDate>Thu, 08 May 2008 01:54:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-2548</guid>
		<description>Huh, my quotes looked funny around the $1  -  I created the text file using the cat command.  Fixed the quotes with pico, they look right now, and it works.  Thanks.</description>
		<content:encoded><![CDATA[<p>Huh, my quotes looked funny around the $1  -  I created the text file using the cat command.  Fixed the quotes with pico, they look right now, and it works.  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bonnie</title>
		<link>http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-2545</link>
		<dc:creator>Bonnie</dc:creator>
		<pubDate>Wed, 07 May 2008 17:47:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-2545</guid>
		<description>This looks great.  I don't know anything about compiling commands so I tried the curl that comes with OS X.  When I try this only the content up to my first space is posted on Twitter.   Do you think that's my curl or is there something else you think it might be?</description>
		<content:encoded><![CDATA[<p>This looks great.  I don&#8217;t know anything about compiling commands so I tried the curl that comes with OS X.  When I try this only the content up to my first space is posted on Twitter.   Do you think that&#8217;s my curl or is there something else you think it might be?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse</title>
		<link>http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-2443</link>
		<dc:creator>Jesse</dc:creator>
		<pubDate>Fri, 18 Apr 2008 09:23:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-2443</guid>
		<description>Hello,

I like you script, its simple and sweet.  I only have to say that its probably not a good idea to advise people to chmod something to 777.  This would enable other users (who would have access to your machine or network) to see not only the password which is hard coded in the script, but to change the script and insert something malicious.  Perhaps something a bit more conservative like 700 would be a better choice.  This value would mean that the owner (you) has read, write and execute permissions on the file, but no one else.  I know you probably, and rightfully trust the people on your network, but hey--its the same amount of typing and you get free security :).

Kind Regards,

Jesse</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I like you script, its simple and sweet.  I only have to say that its probably not a good idea to advise people to chmod something to 777.  This would enable other users (who would have access to your machine or network) to see not only the password which is hard coded in the script, but to change the script and insert something malicious.  Perhaps something a bit more conservative like 700 would be a better choice.  This value would mean that the owner (you) has read, write and execute permissions on the file, but no one else.  I know you probably, and rightfully trust the people on your network, but hey&#8211;its the same amount of typing and you get free security :).</p>
<p>Kind Regards,</p>
<p>Jesse</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: crimeboy</title>
		<link>http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-2409</link>
		<dc:creator>crimeboy</dc:creator>
		<pubDate>Wed, 16 Apr 2008 00:53:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-2409</guid>
		<description>to improve that, and use without commas i make it


crimeboy@groselia:~$ cat twi 
#!/bin/bash
# requires curl
###########################

######## CONFIG
USER=YOULOGIN
PASS=YOURPASS
URL="http://twitter.com/statuses/update.xml"
###############
curl -u $USER:$PASS -d status="$*" -s -o /dev/null ${URL}</description>
		<content:encoded><![CDATA[<p>to improve that, and use without commas i make it</p>
<p>crimeboy@groselia:~$ cat twi<br />
#!/bin/bash<br />
# requires curl<br />
###########################</p>
<p>######## CONFIG<br />
USER=YOULOGIN<br />
PASS=YOURPASS<br />
URL=&#8221;http://twitter.com/statuses/update.xml&#8221;<br />
###############<br />
curl -u $USER:$PASS -d status=&#8221;$*&#8221; -s -o /dev/null ${URL}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christopher S. Penn</title>
		<link>http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-2326</link>
		<dc:creator>Christopher S. Penn</dc:creator>
		<pubDate>Sun, 06 Apr 2008 05:18:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-2326</guid>
		<description>Dunno - as a rule, I typically compile major packages I know I'm going to use from source. That's a me oddity :)</description>
		<content:encoded><![CDATA[<p>Dunno - as a rule, I typically compile major packages I know I&#8217;m going to use from source. That&#8217;s a me oddity <img src='http://www.christopherspenn.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Murphy Mac</title>
		<link>http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-2325</link>
		<dc:creator>Murphy Mac</dc:creator>
		<pubDate>Sat, 05 Apr 2008 04:32:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-2325</guid>
		<description>Does this not work with the curl that ships with Leopard?  I left my password out of the command, was prompted for it, but my post didn't appear.  I saw the html go by. 

Cool.  I'll be looking into Chris Brogan's question.  I'm definitely interested in seeing Tweets in the Terminal.</description>
		<content:encoded><![CDATA[<p>Does this not work with the curl that ships with Leopard?  I left my password out of the command, was prompted for it, but my post didn&#8217;t appear.  I saw the html go by. </p>
<p>Cool.  I&#8217;ll be looking into Chris Brogan&#8217;s question.  I&#8217;m definitely interested in seeing Tweets in the Terminal.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlos</title>
		<link>http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-1858</link>
		<dc:creator>carlos</dc:creator>
		<pubDate>Tue, 08 Jan 2008 19:57:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-1858</guid>
		<description>Now, works fine. I don't know what's happened.
Only to add the script works in gnu/linux OS too
Regards</description>
		<content:encoded><![CDATA[<p>Now, works fine. I don&#8217;t know what&#8217;s happened.<br />
Only to add the script works in gnu/linux OS too<br />
Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlos</title>
		<link>http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-1857</link>
		<dc:creator>carlos</dc:creator>
		<pubDate>Tue, 08 Jan 2008 16:58:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-1857</guid>
		<description>Hi, 
I work with ubuntu 7.10
I've follow the steps but when I type in the terminal:
tw
and ask for my host password I enter my twitter pass, but it says:
 Couldn't resolve host
The host pass and the twitter pass are different?
Thanks</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I work with ubuntu 7.10<br />
I&#8217;ve follow the steps but when I type in the terminal:<br />
tw<br />
and ask for my host password I enter my twitter pass, but it says:<br />
 Couldn&#8217;t resolve host<br />
The host pass and the twitter pass are different?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Pennebaker</title>
		<link>http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-612</link>
		<dc:creator>Andrew Pennebaker</dc:creator>
		<pubDate>Thu, 14 Jun 2007 05:10:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-612</guid>
		<description>Thanks! I added the silent option and sent the stdout text to heck:

#!/usr/bin/env sh
curl -u yourusername -d status="$1" -s -o /dev/null http://twitter.com/statuses/update.xml</description>
		<content:encoded><![CDATA[<p>Thanks! I added the silent option and sent the stdout text to heck:</p>
<p>#!/usr/bin/env sh<br />
curl -u yourusername -d status=&#8221;$1&#8243; -s -o /dev/null <a href="http://twitter.com/statuses/update.xml" >http://twitter.com/statuses/update.xml</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Brogan...</title>
		<link>http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-518</link>
		<dc:creator>Chris Brogan...</dc:creator>
		<pubDate>Fri, 01 Jun 2007 21:42:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-518</guid>
		<description>That's for outbound, right? Is there a way to "tail the log" and watch realtime status come IN?</description>
		<content:encoded><![CDATA[<p>That&#8217;s for outbound, right? Is there a way to &#8220;tail the log&#8221; and watch realtime status come IN?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Johnson, Jr.</title>
		<link>http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-499</link>
		<dc:creator>Daniel Johnson, Jr.</dc:creator>
		<pubDate>Fri, 01 Jun 2007 19:11:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.christopherspenn.com/2007/06/01/how-to-twitter-from-terminal-on-the-mac/#comment-499</guid>
		<description>Anyone know if this or something similar works in windows?</description>
		<content:encoded><![CDATA[<p>Anyone know if this or something similar works in windows?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
