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

Save a file you edited in vim without the needed permissions

Terminal - Save a file you edited in vim without the needed permissions
:w !sudo tee %
2009-02-25 16:27:24
User: skinp
Functions: tee
253
Save a file you edited in vim without the needed permissions

I often forget to sudo before editing a file I don't have write permissions on. When you come to save that file and get the infamous "E212: Can't open file for writing", just issue that vim command in order to save the file without the need to save it to a temp file and then copy it back again.

Alternatives

There is 1 alternative - vote for the best!

Terminal - Alternatives
:w !pfexec tee %

Know a better way?

If you can do better, submit your command here.

What others think

this is just awesome! of course you have to have sudo rights...

Comment by nottings 54 weeks and 3 days ago

awe-some !

Comment by pyrho 54 weeks and 3 days ago

Unfortunately this does not work well in gvim.

Comment by tutwabee 54 weeks ago

I wish I could vote this up more than once. Thanks!

Comment by Alanceil 54 weeks ago

nice - thanks!

Comment by waltharius 51 weeks and 5 days ago

I use

:w !cat > %

which is similar, but shorter (you can add sudo in there if you want).

Comment by spatz 47 weeks and 6 days ago

awesome!

Comment by Iany 44 weeks and 2 days ago

I always quit vi and sudo vi when I find I haven't write permission before. This command save me much time.

Comment by kylexlau 43 weeks and 3 days ago

!sudo cat > % won't work:

* the su-ed command is "cat" but

* > % isn't an argument for "cat", but a redirection

it's the same for sudo echo > myRootFile.txt

you could try with sudo sh -c "cat > %" but it's longer

so tee is ok.

comments welcome.

Comment by ioggstream 35 weeks and 3 days ago

greatest commend ever!!! tnx!

Comment by ilyxa 32 weeks and 4 days ago

how often did i miss this command, perfect!

+1 vote for greatest command ever

Comment by buergi 27 weeks and 2 days ago

i have added:

cmap w!! %!sudo tee > /dev/null %

to my .vimrc, so I can just use :w!! to write files with sudo

Comment by f3lix 18 weeks and 5 days ago

Pretty sweet. I'm an Emacs guy, but I'm impressed with the succinct way vi handles changing effective UID.

By the way, does this work for files that have spaces in the filenames? I would guess that it wouldn't. Is it fixable by double-quoting the %?

Comment by hackerb9 15 weeks and 3 days ago

You made me curious about filenames with spaces so I had to try it out. It only works with the "%". But as a general rule, I try not to name Unix files with spaces.

Comment by skinp 15 weeks and 2 days ago

Really nice! I just freaked out when I tried this with nvi (in Ubuntu 9.10)... it did not ask for my password and yet it wrote an /etc file. Please shed some light!

Comment by ez77 11 weeks and 3 days ago

Wow, this will come in handy. So will f3lix's :w!!

but I like to use abbreviations, i think they are cleaner than remapping:

ca w!! w !sudo tee "%"
Comment by jearsh 6 weeks and 3 days ago

Your point of view

You must be signed in to comment.

Related sites and podcasts