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:
time read -sn1 (s:silent, n:number of characters. Press any character to stop)
There is 1 alternative - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
Neat. Though, in Z-shell, it seems that 'time' needs to be redirected, or it doesn't work.
time > readCorrection: my comment should have read
time > /dev/nulOr similar. Obviously, redirecting to a file will create an empty/garbage file.
Note that the text in brackets is not part of the command. Also, ENTER works as well as Ctrl-D.
bashism??
also does the same thing (with ctrl+d):
time cat@point_to_null
time is a bash builtin but some OSes have their own time commands.
@grep
You are rigth. Was a mistake
the command time read -sn1 is better to stop it (by pressing any character...)
This one gives lap times on key presses and stops and gives a total when you press s
total=0;nl=$'\n';key=go; while [[ $key != 's' ]]; do result=$( (time read -sn1; echo "$REPLY") 2>&1 );result=${result/$nl/ };key=${result#* };lap=${result% *}; thou=${lap#0};thou=${thou/.};let total+=$thou;echo "Lap $lap"; done; echo "Total ${total:0:${#total} - 3}.${total: -3:3}"Oops, I forgot to add this at the beginning of the line:
TIMEFORMAT=%E;And this at the end:
unset TIMEFORMATOops again! (why can't we edit these comments?) There should have been a semicolon right before the unset.
Fixed a problem with leading zeros on very small intervals:
shopt -s extglob;TIMEFORMAT=%E;total=0;nl=$'\n';key=go; while [[ $key != 's' ]]; do result=$( (time read -sn1; echo "$REPLY") 2>&1 ); result=${result/$nl/ }; key=${result#* }; lap=${result% *}; thou=${lap/.}; thou=${thou/#+(0)}; let total+=$thou; echo "Lap $lap"; done; echo "Total ${total:0:${#total} - 3}.${total: -3:3}"; unset TIMEFORMATIn zsh you need to do:
time ( read )