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

2011-03-12 - Confoo 2011 presentation
Slides are available from the commandlinefu presentation at Confoo 2011: http://presentations.codeinthehole.com/confoo2011/
2011-01-04 - Moderation now required for new commands
To try and put and end to the spamming, new commands require moderation before they will appear on the site.
2010-12-27 - Apologies for not banning the trolls sooner
Have been away from the interwebs over Christmas. Will be more vigilant henceforth.
2010-09-24 - OAuth and pagination problems fixed
Apologies for the delay in getting Twitter's OAuth supported. Annoying pagination gremlin also fixed.
Hide

Tags

Hide

Functions

Commands using alias

Commands using alias from sorted by
Terminal - Commands using alias - 192 results
alias clearscrollback='clear;printf %b "\033[3J"'
alias cls='clear;ls'
2013-03-19 12:18:47
User: opexxx
Functions: alias
Tags: ls clear
0

Clear the screen and list file

alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
2013-03-19 11:45:47
User: opexxx
Functions: alias
0

Add an "alert" alias for long running commands

alias gfind='find . -print0 | xargs -0 egrep -I '
alias private_mode='unset HISTFILE && echo -e "\033[1m[\033[0m\033[4m*\033[0m\033[1m] \033[0m\033[4mprivate mode activated.\033[0m"'
2013-02-17 00:03:37
User: s__
Functions: alias echo
0

same as "unset HISTFILE" - but the advantage is that you can "tab-complete" it and when you do, you won't mistype it (which could lead to not unsetting the HISTFILE).

put the alias in the ~/.bash_profile or ~/.bashrc file in your users home directory, respawn, enjoy! :)

alias LS='find -mount -maxdepth 1 -printf "%.5m %10M %#9u:%-9g %#5U:%-5G %TF_%TR %CF_%CR %AF_%AR %#15s [%Y] %p\n" 2>/dev/null'
2013-02-06 17:54:14
User: AskApache
Functions: alias
2

This alias is super-handy for me because it quickly shows the details of each file in the current directory. The output is nice because it is sortable, allowing you to expand this basic example to do something amazing like showing you a list of the newest files, the largest files, files with bad perms, etc..

A recursive alias would be:

alias LSR='find -mount -printf "%.5m %10M %#9u:%-9g %#5U:%-5G %TF_%TR %CF_%CR %AF_%AR %#15s [%Y] %p\n" 2>/dev/null'

From: http://www.askapache.com/linux/bash_profile-functions-advanced-shell.html

alias updatedb="sudo /usr/libexec/locate.updatedb"
2013-01-21 17:46:57
User: jhyland87
Functions: alias
0

MAC OSX doesn't come with an updatedb command by default, this will emulate the updatedb thats on a typical Linux OS.

Simply add it to your ~/.bash_profile

alias locate='if [ $((`date +%s`-`eval $(stat -s /var/db/locate.database); echo $st_mtime`)) -gt 3600 ]; then echo "locate: db is too old!">/dev/stderr; sudo /usr/libexec/locate.updatedb; fi; locate -i'
2013-01-21 17:45:50
User: jhyland87
Functions: alias echo locate stat sudo
Tags: locate osx mac
0

MAC OSX doesn't come with a locate command, This will do the same thing as the locate command on a typical Linux OS.

Simply add it to your ~/.bash_profile

alias ssh-x='ssh -c arcfour,blowfish-cbc -XC'
function map() { [ -n "$1" ] && alias $1="cd `pwd`" || alias | grep "'cd "; }
alias ll='ls -lisaG'
alias emacs='vim'
alias colortest="python -c \"print('\n'.join([(' '.join([('\033[38;5;' + str((i + j)) + 'm' + str((i + j)).ljust(5) + '\033[0m') if i + j < 256 else '' for j in range(10)])) for i in range(0, 256, 10)]))\""
2012-10-26 07:43:06
User: Paaskehare
Functions: alias
1

Terminal Color tester using python, works with py2 and 3

alias sdr="screen -dR"
2012-10-22 21:46:26
User: tox2ik
Functions: alias
Tags: bash screen
0

There is no need to use the shell or construct. Screen offers varius ways of detaching and reattaching. man screen and look for -[rRdD].

to create a named session: sdr moo

hide:

resume: sdr moo

alias pp='python -mjson.tool | pygmentize -l javascript'
2012-10-16 13:55:38
User: wires
Functions: alias
0

Uses pygmentize and python to create indented and colorized JSON output

alias ls='ls --color=auto'
2012-09-20 16:13:09
User: huazhihao
Functions: alias
-7

wonder below line why doesn't work

echo "alias ls='ls --color'">>~/.profile

alias g='git'
2012-08-31 05:12:56
User: evandrix
Functions: alias
Tags: git
-8

g clone --local --bare . /repo.git

g remote add alias /repo.git

g push alias branch

g log -p filename

g checkout SHA1_rev

g reset --hard

g checkout -b new_branch

g ls-files --deleted

alias rrm='/bin/rm -i'; alias rm='trash'
2012-08-12 14:02:24
User: expelledboy
Functions: alias
Tags: rm safe
0

Replace rm, a neat shortcut, with a less permanent method of removal.

Note may require you to install the trash client; "sudo apt-get -y install trash-cli"

alias irc="screen -D -R -S chatclient irssi"
2012-08-12 13:24:43
User: expelledboy
Functions: alias
2

This command attempts to attach to existing irssi session, if one exists, otherwise creates one.

I use "irc" because I use different irc clients depending on what system I am working on. Consistency is queen.

alias ls='if [[ -f .hidden ]]; then while read l; do opts+=(--hide="$l"); done < .hidden; fi; ls --color=auto "${opts[@]}"'
2012-08-12 13:10:23
User: expelledboy
Functions: alias ls read
Tags: hidden ls alias
1

Sometimes I would like to see hidden files, prefix with a period, but some files or folders I never want to see (and really wish I could just remove all together).

alias md='mkdir -p'; alias rd='rmdir'; mcd () { mkdir "$@" && cd "$_"; }
2012-08-12 12:54:51
User: expelledboy
Functions: alias cd mcd mkdir
0

I realise that this is just a reiteration of another entry (regardless of whether I came up with all this all by myself), but I would like present my additional alias' in context as a method of managing your directories. Rather convenient.

alias ':q'='exit'; alias ':e'='vim';
2012-08-12 12:35:10
User: expelledboy
Functions: alias
Tags: vim alias
-2

This was me just succumbing to the habits, but now I rarely use quit or vim directly, so beware! :)

alias pasteit="curl -F 'sprunge=<-' http://sprunge.us"
2012-07-19 19:46:39
User: frdmn
Functions: alias
Tags: pastebin
0

NAME

sprunge: command line pastebin:

SYNOPSIS

| curl -F 'sprunge=

DESCRIPTION

add ? to resulting url for line numbers and syntax highlighting

EXAMPLES

~$ cat bin/ching | curl -F 'sprunge=

http://sprunge.us/VZiY

~$ firefox http://sprunge.us/VZiY?py#n-7

SEE ALSO

http://github.com/rupa/sprunge

alias myip='curl -s http://checkrealip.com/ | grep "Current IP Address"'
alias vless='/usr/share/vim/vimcurrent/macros/less.sh'
2012-04-28 23:01:25
User: Bonster
Functions: alias
7

use vim like less command pager but with color highlighting = pretty :p

also u can use /usr/share/vim/vim73/macros/less.sh