A PHP Error was encountered

Severity: Notice

Message: Memcache::connect(): Server localhost (tcp 11211, udp 0) failed with: Connection refused (111)

Filename: libraries/Cache.php

Line Number: 83

A PHP Error was encountered

Severity: Warning

Message: Memcache::connect(): Can't connect to localhost:11211, Connection refused (111)

Filename: libraries/Cache.php

Line Number: 83

Commands by joedhon | commandlinefu.com
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.

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

2012-05-20 - test
test
2012-05-20 - test
test
2012-05-20 - test
test
2012-05-20 - Test tweets
YU not working?
Hide

Tags

Hide

Functions

Commands by joedhon

Commands by joedhon from sorted by
Terminal - Commands by joedhon - 7 results
find . -maxdepth 1 -size 0c -delete
cd / && touch ./\-i
2012-04-05 20:55:37
User: joedhon
Functions: cd touch
-11

Somehow, i prefer forcing to rm interactively to accidently rm'ing everything...

dd if=/dev/urandom of=/dev/somedisk
2012-01-24 09:13:15
User: joedhon
Functions: dd
-5

Same game as #10096 . loop as many times as you like.

title() { string=( $@ ); echo ${string[@]^} }
shutdown -h +240
2011-05-02 18:38:57
User: joedhon
Functions: shutdown
5

you may as well use shutdown -h 18:32 to shutdown your machine at 18:32.

find . -name '*.epub' -exec sh -c 'a={}; ebook-convert $a ${a%.epub}.mobi --still --more --options' \;
2011-04-21 22:03:01
User: joedhon
Functions: find sh
0

-exec sh -c 'var={}; do something with var' lets you do things in a sub-shell

while it's faster to type, I'm not sure if dozens of subshells execute quicker than the while loops.

println() {echo -n -e "\e[038;05;${2:-255}m";printf "%$(tput cols)s"|sed "s/ /${1:-=}/g"}
2011-01-09 18:08:18
User: joedhon
Functions: printf sed
Tags: sed tput printf
0

function for .bash_aliases that prints a line of the character of your choice in the color of your choice across the terminal.

Default character is "=", default color is white.