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 makes an alias for a command named 'busy'. The 'busy' command opens a random file in /usr/include to a random line with vim. Drop this in your .bash_aliases and make sure that file is initialized in your .bashrc.
There are 3 alternatives - vote for the best!
Enhancement for the 'busy' command originally posted by busybee : less chars, no escape issue, and most important it exclude small files ( opening a 5 lines file isn't that persuasive I think ;) )
This makes an alias for a command named 'busy'. The 'busy' command opens a random file in /usr/include to a random line with vim.
If you can do better, submit your command here.
You must be signed in to comment.
i like the idea :D
Fails here due to sort not knowing -R.
CentOS 5.3
sort (GNU coreutils) 5.97
It always takes me to the last line because the braces in the awk statement aren't properly escaped for zsh by the doublequotes. The following works for me:
my_file=$(find /usr/include -type f | sort -R | head -n 1); my_len=$(wc -l $my_file | awk '{print $1}'); let "r = $RANDOM % $my_len" 2>/dev/null; vim +$r $my_fileOops -- actually, in the alias statement as you wrote it it does in fact work fine. Interesting. My post above applied when using the body of the command alone on the commandline.
Wow. That takes me back to the days when video games had "boss keys" that would show a fake spreadsheet or some such business-baloney. Of course, if you're at a command line, as this command assumes, I'm not quite sure what you'd want to hide from your boss... ASCII art Pr0n?
you must add a backspace to escape the $ character in the awk argument and make it work:
alias busy='my_file=$(find /usr/include -type f | sort -R | head -n 1); my_len=$(wc -l $my_file | awk "{print $1}"); let "r = $RANDOM % $my_len" 2>/dev/null; vim +$r $my_file'you must add a backspace to escape the $ character in the awk argument and make it work:
alias busy='my_file=$(find /usr/include -type f | sort -R | head -n 1); my_len=$(wc -l $my_file | awk "{print \$1}"); let "r = $RANDOM % $my_len" 2>/dev/null; vim +$r $my_file'sorry, it works either way, but my fix makes the vim line jump work as expected by the author.
(is there a way to remove my first reply?)