|
From: | Chet Ramey |
Subject: | Re: feature suggestion: ability to expand a set of elements of an array or characters of a scalar, given their indices |
Date: | Wed, 26 Jun 2024 14:30:28 -0400 |
User-agent: | Mozilla Thunderbird |
On 6/26/24 2:18 PM, Zachary Santer wrote:
On Tue, Jun 11, 2024, 12:49 PM Zachary Santer <zsanter@gmail.com> wrote:$ array=( zero one two three four five six ) $ printf '%s\n' "${array[@]( 1 5 )}" one fiveThis is different functionality.
Equivalent to printf '%s\n' "${array[1}" "${array[5]}". The innovation Zach wants is to have a single word expansion to do this. -- ``The lyf so short, the craft so long to lerne.'' - Chaucer ``Ars longa, vita brevis'' - Hippocrates Chet Ramey, UTech, CWRU chet@case.edu http://tiswww.cwru.edu/~chet/
[Prev in Thread] | Current Thread | [Next in Thread] |