RE: Re: Brace expansion ordering vs. parameter expansion

2021-04-29 Thread Tom (AST) Watson
; as they show themselves. Thanks for the input. It has been helpful. ...Tom -Original Message- From: Chet Ramey Sent: Thursday, April 29, 2021 07:46 To: Ilkka Virta Cc: chet.ra...@case.edu; Tom (AST) Watson ; bug-bash@gnu.org Subject: [External] Re: Brace expansion ordering vs. paramete

Problem with sequences with variables?

2021-04-28 Thread Tom (AST) Watson
Hi... I was trying to do some sequences, and it looks like they don't like variables. See the following: [user@box3 ~]$ echo $BASH_VERSION 5.0.17(1)-release [user@box3 ~]$ echo {1..10} 1 2 3 4 5 6 7 8 9 10 [user@box3 ~]$ echo $l 10 [user@box3 ~]$ echo {1..${l}} {1..10} [user@box3 ~]$ Shouldn't