zsh-users
 help / color / mirror / code / Atom feed
From: Roman Perepelitsa <roman.perepelitsa@gmail.com>
To: Ray Andrews <rayandrews@eastlink.ca>
Cc: Zsh Users <zsh-users@zsh.org>
Subject: Re: better grammar with $#
Date: Sun, 30 Oct 2022 18:29:47 +0100	[thread overview]
Message-ID: <CAN=4vMq2iJCUvWmSjp5ZsF+ETRrv6WN7qYapoeToSq3f=63A=w@mail.gmail.com> (raw)
In-Reply-To: <a99ee704-c0b3-c0b3-7cf7-337412a83082@eastlink.ca>

On Sun, Oct 30, 2022 at 3:17 PM Ray Andrews <rayandrews@eastlink.ca> wrote:
>
>
>     output=$( eval "$@" )  # Input here is a 'find' command outputting a list of files.
>     tmp=( ${(f)output} )   # Count lines not characters.
>     linecount=$#tmp

You can combine the two expansions:

  linecount=${#${(f)output}}

> And is it lines or words there?

It's lines.

If you can replace the `find` command with a glob, it'll be simpler.
You'll also avoid quoting issues. If your code is supposed to handle
all sorts of file names, make sure it can handle files with backslash
and line feed in their names.

Roman.


  parent reply	other threads:[~2022-10-30 17:30 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-30 14:16 Ray Andrews
2022-10-30 17:21 ` Philippe Troin
2022-10-30 17:29 ` Roman Perepelitsa [this message]
2022-10-30 17:49   ` 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='CAN=4vMq2iJCUvWmSjp5ZsF+ETRrv6WN7qYapoeToSq3f=63A=w@mail.gmail.com' \
    --to=roman.perepelitsa@gmail.com \
    --cc=rayandrews@eastlink.ca \
    --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).