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/
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.
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
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:
this adds a random color to your prompt and the external ip.
useful if you are using multiple mashines with the same hostname.
There is 1 alternative - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
if you want a shorter version, you could add only the last part of the ip with this:
IP=$(nslookup `hostname` | grep -i address | awk -F" " '{print $2}' | awk -F. '{print $3 "." $4}' | awk -F# '{print $1}' | tail -n 1 ); R=3$((RANDOM%6 + 1)); PS1="\n\[\033[1;37m\]\u@\[\033[1;$R""m\]\h^$IP:\[\033[1;37m\]\w\$\[\033[0m\] "
instead.
or even without the ip (still useful if you get mixed up with all your open terminals):
R=3$((RANDOM%6 + 1)); PS1="\n\[\033[1;37m\]\u@\[\033[1;$R""m\]\h:\[\033[1;37m\]\w\$\[\033[0m\] "
if you want a color depending on the mac adress, use this command:
UNIQUE_BY_MAC=$(ifconfig |grep eth0|awk '{ print strtonum("0x"substr($6,16,2)) }'); IP=$(nslookup `hostname` | grep -i address | awk -F" " '{print $2}' | awk -F# '{print $1}' | tail -n 1 ); RANDCOLOR=3$(($UNIQUE_BY_MAC%6 + 1));PS1="\n\[\033[1;37m\]\u@\[\033[1;$RANDCOLOR""m\]\h^$IP:\[\033[1;37m\]\w\$\[\033[0m\] ";taken from
http://www.commandlinefu.com/commands/view/5737/unique-number-by-mac-address
the external ip is taken from
nslookup `hostname` | grep -i address | awk -F" " '{print $2}' | awk -F# '{print $1}' | tail -n 1this is not always what you need,
if you want the internat ip address, use this instead:
ifconfig | grep -i Bcast | awk -F" " '{print $2}' | awk -F: '{print $2}' | tail -n 1so the overall command will be
UNIQUE_BY_MAC=$(ifconfig |grep eth0|awk '{ print strtonum("0x"substr($6,16,2)) }');IP=$(ifconfig | grep -i Bcast | awk -F" " '{print $2}' | awk -F: '{print $2}' | tail -n 1);RANDCOLOR=3$(($UNIQUE_BY_MAC%6 + 1));PS1="\n\[\033[1;37m\]\u@\[\033[1;$RANDCOLOR""m\]\h^$IP:\[\033[1;37m\]\w\$\[\033[0m\] ";