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:
You can use this to loop any command to periodically see the output.
while true; do [YOUR COMMAND HERE]; sleep [# of seconds]; done;
Alternatively, you can put it in a simple shell script to save typing!
#/!bin/bash
while true; do $1; sleep $2; done;
/path/to/script.sh "ifconfig eth0 | grep 'inet addr:'" 60
There are 2 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
watch -n1 -d ifconfig eth0
Watch equivalent:
watch -n60 'ifconfig eth0 | grep "inet addr:"'Yeah, use watch, if it is available. The best part is that the -d option allows highlighting of the things that have changed since the last invocation. watch is part of the base ubuntu install and comes from the 'procps' package.
Alternatively, there's another really cool alternative to while: until, which negates the condition:
until false;do sleep 1;doneWhich actually is handy for things like pinging a down machine
until ping -c1 machine;do sleep 1;done;beepwill make a beep when the machine is back up.
@SlimG- two things: 1) you don't need to nest the command. 2) if you insist on nesting it, for the love of everything good and holy, ditch the backticks.
while ifconfig eth0 | grep "inet addr:";do sleep 60; done;@atoponce: 1) yes you do or grep won't fire until watch exits. 2) those aren't backticks, they're single quotes; quite different.
I used it to check my connection since I have some troubles with my ISP (yeah I know I could change...). I put time and date in a file every time my connection is down like this:
while true; do ping pong.sunet.se; date >> downTime; done;