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:
There are 2 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
TODO:
- Give more weight to vowles
- Make paragraphs start with a tab.
- Remove 2,3 consonates togheter.
I wonder where can this command show its usefulness.
Interesting and as willcai points out probably not very useful :-)
However, we can tidy it up a bit:
First, the middle two tr commands can be combined:
... | tr 0-9 '\n ' | ...Zero will be converted to a newline. 1-9 will be converted to space.
Next, shorten the sed command. There won't be any tabs in the output, so:
... | sed 's/^ *//' | ...Leaving:
tr -dc a-z0-9 </dev/urandom | tr 0-9 '\n ' | sed 's/^ *//' | fmt -uI've been trying to make the output more realistic by skewing the random input.
No success so far :-(
Here's a quick sed to remove any duplicate letters:
... | sed 's/\(.\)\(\1\)*/\1/g' | ...I think this is useful to create "Lorem Ipsum"-Text.
And no, you can't combine the tr-commands. Try
...tr 0-6 \ | tr 7-9 \\n ... to see the difference.Changing the ranges influences the length of the generated paragraphs.
Rigth joedhon!. Numbers are used to parametrize spaces/newlines, although flatcap solution is more elegant and you can also parametrize this way:
...tr 0-9 " \n"so 0-6=" " and 7-9="\n". right ?
Thanks all!
No, that is 0-9="\n", and the lines having trailing spaces.
btw: there will never be a "." , so the -u is unnecessary unless you throw in some extra dots and spaces after the dots.