Re: lcut query

2025-06-05 Thread Duncan Roe
On Thu, Jun 05, 2025 at 01:39:24PM -0400, Chet Ramey wrote: > On 6/5/25 10:27 AM, Chet Ramey wrote: > > On 6/5/25 6:41 AM, Duncan Roe wrote: > > > Hi Chet, > > > > > > `help lcut` implies to me that columns specified -b or -c should go to > > > separate elements of ARRAY (unlike what cut does), but

Re: lcut query

2025-06-05 Thread Chet Ramey
On 6/5/25 10:27 AM, Chet Ramey wrote: On 6/5/25 6:41 AM, Duncan Roe wrote: Hi Chet, `help lcut` implies to me that columns specified -b or -c should go to separate elements of ARRAY (unlike what cut does), but they do not. Thanks, I'll take a look. I haven't played with `lcut' in a long time;

Re: lcut query

2025-06-05 Thread Chet Ramey
On 6/5/25 6:41 AM, Duncan Roe wrote: Hi Chet, `help lcut` implies to me that columns specified -b or -c should go to separate elements of ARRAY (unlike what cut does), but they do not. Thanks, I'll take a look. I haven't played with `lcut' in a long time; that's why it's not in the makefile.

lcut query

2025-06-05 Thread Duncan Roe
Hi Chet, `help lcut` implies to me that columns specified -b or -c should go to separate elements of ARRAY (unlike what cut does), but they do not. | 20:20:34$ lcut -a i -c1,2,3 abc | 20:30:13$ echo ${i[0]} | abc | 20:30:23$ echo ${i[1]} | | 20:30:42$ Cheers ... Duncan.