zsh-users
 help / color / mirror / code / Atom feed
From: "Lawrence Velázquez" <larryv@zsh.org>
To: zsh-users@zsh.org
Subject: Re: create variable with calculated number of spaces.
Date: Mon, 06 May 2024 19:57:38 -0400	[thread overview]
Message-ID: <cd0cc21b-093f-4818-9503-29fe86cb3124@app.fastmail.com> (raw)
In-Reply-To: <CAA=-s3xXX-CmL4p-oFqxFaJ0Rnz9khBirPzTdvESxsDaBiRr_g@mail.gmail.com>

On Mon, May 6, 2024, at 6:38 PM, Mark J. Reed wrote:
> or, more efficiently:
>
>     printf -v spacer "%${diff}s" ''

And if the spacing is just being added to the beginning or end of
string1, then don't bother with the spacer variable:

	# Left-padded
	printf -v string1 '%*s' $#string2 $string1

	# Right-padded
	printf -v string1 '%-*s' $#string2 $string1

-- 
vq


  parent reply	other threads:[~2024-05-06 23:58 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-06 22:03 Ray Andrews
2024-05-06 22:33 ` Mark J. Reed
2024-05-06 22:35   ` Mark J. Reed
2024-05-06 22:38     ` Mark J. Reed
2024-05-06 23:02       ` Ray Andrews
2024-05-06 23:28         ` Mark J. Reed
2024-05-06 23:41           ` Ray Andrews
2024-05-06 23:57       ` Lawrence Velázquez [this message]
2024-05-07  5:14         ` Ray Andrews
2024-05-07  5:52           ` Roman Perepelitsa
2024-05-07 14:56             ` Ray Andrews

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cd0cc21b-093f-4818-9503-29fe86cb3124@app.fastmail.com \
    --to=larryv@zsh.org \
    --cc=zsh-users@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).