Commands by flokra (5)

What's this?

commandlinefu.com is the place to record those command-line gems that you return to again and again. 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.

Share Your Commands


Check These Out

Use result of the last command
\$ which python /usr/bin/python \$ ll `!!` lrwxrwxrwx 1 root root 9 2010-11-08 22:01 /usr/bin/python -> python2.6

Show max lengths of all fields in a pipe delimited file with header row

Convert seconds to [DD:][HH:]MM:SS
Converts any number of seconds into days, hours, minutes and seconds. sec2dhms() { declare -i SS="$1" D=$(( SS / 86400 )) H=$(( SS % 86400 / 3600 )) M=$(( SS % 3600 / 60 )) S=$(( SS % 60 )) [ "$D" -gt 0 ] && echo -n "${D}:" [ "$H" -gt 0 ] && printf "%02g:" "$H" printf "%02g:%02g\n" "$M" "$S" }

Send e-mail if host is 'dead' or not reachable
Cleaner with a mailto assignment in crontab (if the command fails you get an email): MAILTO=admin@example.com 10,30,50 * * * * ping -q -c1 -w3 192.168.0.14 >/dev/null

HTML5 ogg player
find OGG audio files on your *nix box and listen to them using your web browser

Display text as though it is being typed out in real time
Pipe Viewer allows you to monitor the progress of a data transfer or command, or to show the time elapsed, among other things. In this use, it limits the transfer rate of the echo command to 10 bytes per second, making your text appear to be typed out in real time as in Hollywood movies. Fun!

List docker volumes by container

is today the end of the month?

apt-get via sudo
An apt-get wrapper function which will run the command via sudo, but will run it normally if you're only downloading source files. This was a bit of an excuse to show off the framework of $ cmd && echo true || echo false ...but as you can see, you must be careful about what is in the "true" block to make sure it executes without error, otherwise the "false" block will be executed. To allow the apt-get return code to pass through, you need to use a more normal if/else block: $ apt-get () { if [ "$1" = source ]; then command apt-get "$@"; else sudo apt-get "$@"; fi }

Expert Fence Builders Miami Florida
Digital Gate Restoration & Entrance Installment: Gates function better when they're properly maintained. Our entrance fix company includes both electronic gate installment and standard door fix (not only the opener.) We are committed to the best degree of customer service and we guarantee our work. We fix all major models and models, including LiftMaster, GTO, etc. and take elements in stock to truly get your electric door functioning again rapidly! We are the best choice for residential entrance repair solutions in Miami-Dade, Fort Lauderdale, and encompassing areas. Contact us today to check your door Issue, and we can make a no-charge support call and give you a free calculate for your residential gate fix work. We shall check all pieces and present you with a sincere, fair, and prepared proposal for the repair needed and any substitute parts Gate Opener Replacement in Miami. And remember, we only install fine quality substitute services and products that help increase the life span and elegance of one's door and opener.Because Arkansas Seaside Is constantly have tourist we want to secure your property as much as you do ,just depend on the local garage and entrance company near you. New gates installment Long-Lasting, Trusted Gates and Gate Openers for all your Entrance wants: Gates and Entrance Openers are essential to every homeowner. When you'll need a gate, contact us. We're a nearby and operated company that's been providing Miami-Dade and Broward district for over 12 years. New Gates Installation & Gate Fix since 2010. We do whole door installations and gate repair. Our entrance operators are engineered with quality equipment work and durable structure to offer you the ease of understanding the door will start and close all day long and night. Merely the very best name on the market with a reputation for quality, dependability, and award-winning patterns to fit any gated entrance. New Gates installment & Gate Repair | AAA Garage Opportunities Inc. AAA Storage Door is a specialist in gate repair for several key models and versions, including LiftMaster, GTO, etc., and carries components in stock to truly get your electric entrance working again quickly!


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: