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.
Nice, but POSIX wc doesn't have -L. You can use awk instead; just replace the
wc -L
with
awk ' { if ( length > L ) { L=length} }END{ print L}'
and you're there. Doing this takes the function beyond 255 chars, which may be a problem (so don't one-line it).
Also worth noting that these don't right-justify the text (within your terminal window confines). They just right align any lines coming out. So a single line is still flush-left, and the longest line still begins at column zero.
Yep...
If you want to define the linesize you can do samething like it:
right(){ l="$(cat -)"; [ -n "$1" ] && s=$1 || s=$(echo -e "$l"| wc -L); echo "$l" | while read l;do j=$(((s-${#l})));echo "$(while ((j-->0)); do printf " ";done;)$l";done;}; ls --color=none / | right 150with this u can pass the linesize as parametter or remove the parametter and use the max-line-size of input
Seems overly complicated.
right(){ while read;do printf "%${1:-${COLUMNS:-80}}s\n" "$REPLY";done };ls / | right@eightmillion, this way is simple, but you lost the alignment by text, you will have only the column alignment.
and "tput cols" works for me, ${COLUMNS} is not set.
then I think
right(){ while read;do printf "%${1:-$(tput cols)}s\n" "$REPLY";done };ls / --color=none | right
more efetive in you example.
tnks for your way.