Hide

What's this?

commandlinefu.com is the place to record those command-line gems that you return to again and again.

Delete that bloated snippets file you've been using and share your personal repository with the world. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.


If you have a new feature suggestion or find a bug, please get in touch via http://commandlinefu.uservoice.com/

Get involved!

You can sign-in using OpenID credentials, or register a traditional username and password.

First-time OpenID users will be automatically assigned a username which can be changed after signing in.

World cup college
Hide

Stay in the loop…

Follow the Tweets.

Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.

» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10

Subscribe to the feeds.

Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):

Subscribe to the feed for:

Hide

News

2010-03-03 - Commandlinefu @ SXSW 2010
Am going to be at SXSW this year, in case you want to submit any CLI nuggets or suggestions to me in person. Ping me on the @codeinthehole Twitter account.
2009-09-12 - Email updates now available
You can now enable email updates to let you know each time you're command is commented on.
2009-07-11 - API and javascript blog widget now available
A simple API has been released, allowing commands to be retrieved in various formats. This also allows commands to be embedded on blogs/homepages.
2009-05-17 - Added duplicate suggestions to the new command form
When adding a new command, a quick background search is performed to make sure you're not duplicating a command already in the system.
Hide

Tags

Hide

Functions

Twitter update from terminal (pok3's snipts ?)

Terminal - Twitter update from terminal (pok3's snipts ?)
curl -u YourUsername:YourPassword -d status="Your status message go here" http://twitter.com/statuses/update.xml
2009-06-27 21:47:48
User: m33600
10
Twitter update from terminal (pok3's snipts ?)

Found it on snipt, pok3, is it yours?

I put my user = m33600, the password and the status was my robot message:

Settima robot message: ALARM ZONE 3 (sent via command line).

Now bots may have their identity on twitter...

Alternatives

There are 5 alternatives - vote for the best!

Terminal - Alternatives
curl -u user:pass -d status="Tweeting from the shell" http://twitter.com/statuses/update.xml
curl -u user -d status="Tweeting from the shell" http://twitter.com/statuses/update.xml
2009-08-05 02:24:01
User: matthewbauer
12

Doesn't require password (asks for it instead)

tweet () { curl -u UserName -d status="$*" http://twitter.com/statuses/update.xml; }
2009-11-07 06:54:02
User: bartonski
Tags: twitter tweet
5

This version of tweet() doesn't require you to put quotes around the body of your tweet... it also prompts you for password. It will still barf on a '!' character.

curl -u twitter-username -d status="Hello World, Twitter!" -d source="cURL" http://twitter.com/statuses/update.xml
2009-12-08 14:54:33
User: MyTechieself
Tags: twitter curl api
3

An improvement of the original (at: http://www.commandlinefu.com/commands/view/2872/update-twitter-via-curl) in the sense that you see a "from cURL" under your status message instead of just a "from API" ;-) Twitter automatically links it to the cURL home page.

tweet(){ curl -u "$1" -d status="$2" "http://twitter.com/statuses/update.xml"; }
2009-08-23 16:56:24
User: Code_Bleu
2

Type the command in the terminal and press enter to create the tweet() function. Then run as follows:

tweet MyTwitterAccount "My message goes here"

It will prompt you for password. Make sure that you use escape "\" character in message for showing varialbles or markup.

Know a better way?

If you can do better, submit your command here.

What others think

How would I avoid revealing my password to ps?

Comment by kaedenn 37 weeks and 1 day ago

Nifty. I'll use this for my Nagios monitor. Thanks.

Comment by Scott 37 weeks and 1 day ago

@kaedenn: Take a look at the --netrc option in man curl. See also man netrc. (not tested)

Comment by dennisw 37 weeks and 1 day ago

I wrapped this into a shell script that asks for your username, then password, then message and then sends it to twitter. I would like some help, if anyone knows, in verifying whether the message actually gets sent or not and then returning that info to the command line.

Anyone interested in the command, let me know and I will post it here.

Comment by dilbert4life 36 weeks and 6 days ago

If you ommit the password, it will be asked by the curl command interactevely. In this way you can hide the passwd.

curl -u user -d status="Tweeting from the shell" http://twitter.com/statuses/update.xml
Comment by mdelatorre 36 weeks and 2 days ago

I d like to improve it to receive the status messaage form stdin, as a variable, so other programs may send info to twitter. As an example " Temperature in my room is %T now"

Comment by m33600 35 weeks and 5 days ago

Your point of view

You must be signed in to comment.

Related sites and podcasts