[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
easier construction of arrays
From: |
Mike Frysinger |
Subject: |
easier construction of arrays |
Date: |
Thu, 27 Mar 2014 11:53:06 -0400 |
User-agent: |
KMail/4.12.3 (Linux/3.13.0; KDE/4.12.3; x86_64; ; ) |
On Thu 27 Mar 2014 08:01:45 Greg Wooledge wrote:
> files=()
> while IFS= read -r -d '' file; do
> files+=("$file")
> done < <(find . -iname '*.mp3' ! -iname '*abba*' -print0)
i've seen this construct duplicated so many times :(. i wish we had a native
option for it. maybe something like:
read -A files -r -d '' < <(find . -iname '*.mp3' -print0)
perhaps there is another shell out there that implements something that can
replace that loop that bash can crib ?
-mike
signature.asc
Description: This is a digitally signed message part.
Re: ls doesn't work in if statements in bash 4.3, billycongo, 2014/03/27
Re: ls doesn't work in if statements in bash 4.3, billycongo, 2014/03/27
Re: ls doesn't work in if statements in bash 4.3, billycongo, 2014/03/27