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:
Quick and easy way of validating a date format of yyyy-mm-dd and returning a boolean, the regex can easily be upgraded to handle "in betweens" for mm dd or to validate other types of strings, ex. ip address.
Boolean output could easily be piped into a condition for a more complete one-liner.
There are 2 alternatives - vote for the best!
On CentOS at least, date returns a boolean for the common date string formats, including YYYY-MM-DD. In the sample output, you can see various invalid dates returning 0 whereas a simple regex check would return 1 for the invalid dates.
-d, --date=STRING display time described by STRING, not `now'
The version of date on OS X does not appear to have this same option.
If you can do better, submit your command here.
You must be signed in to comment.
You can reduse repetitious typing using 1 of the following commands and achieve the same result :).
echo 2006-10-10 |egrep -c '^[0-9]{4}-[0-9]\{2\}-[0-9]\{2\}'
OR
echo 2006-10-10 |egrep -c '^[0-9]{4}-[0-9]{2}-[0-9]{2}'
Aghh, correction - the 1st line should have been:
echo 2006-10-10 |grep -c '^[0-9]\{4\}-[0-9]\{2\}-[0-9]\{2\}'
I wish commandlinefu had a delete option for one's own posts/comments to clean up one's own typos.
nice:)