Re: Unnecessary bash warning message

2023-05-08 Thread Robert Elz
Date:Mon, 8 May 2023 11:13:19 -0400 From:Chet Ramey Message-ID: <4c66cc58-27f7-4001-c831-8a2a23264...@case.edu> | I see I might need to update the error message to specify it's process | substitution. You might want to (for this particular case anyway) want to

Re: Unnecessary bash warning message

2023-05-08 Thread Chet Ramey
On 5/7/23 10:06 PM, Hyunho Cho wrote: Bash Version: 5.2 Patch Level: 15 Release Status: release ### Process substitution can be used in place of a file in a command line as follows: bash$ cat test.jl for a in ARGS println(a) end bash$

Re: Building loadables depends on main build

2023-05-08 Thread Chet Ramey
On 5/7/23 4:10 PM, Christian Weisgerber wrote: Building the loadable modules depends on files created during the main build. However, the Makefile doesn't record any such dependency. Running for instance "make -j10 all loadables" will fail due to a lack of enforced sequencing. A

Re: Should Use Straight Single Quote instead of Curved

2023-05-08 Thread Chet Ramey
On 5/6/23 12:45 PM, G. Branden Robinson wrote: At 2023-05-06T08:06:40+, Shynur Xie wrote: Should Use Straight Single Quote instead of Curved View this page in browser: Character sequences of the form $’string’ are treated as a special kind of single quotes. should be Character

Re: Integer overflow of i in string_extract_verbatim

2023-05-08 Thread Chet Ramey
On 4/28/23 6:25 PM, Eric Li wrote: Bash Version: 5.2 Patch Level: 15 Release Status: release Description: Bash runs into segmentation fault when spawning a process with argc larger than 2GB. Can debug using GDB and observe that subst.c:1204 (string_extract_verbatim,

Re: Unnecessary bash warning message

2023-05-08 Thread Greg Wooledge
On Mon, May 08, 2023 at 08:28:36AM +0200, alex xmb ratchev wrote: > On Mon, May 8, 2023, 04:07 Hyunho Cho wrote: > > bash$ julia <( cat <<\@ ) 11 22 33 > > for a in ARGS println(a) end > > @ > > bash: warning: command substitution: 1 unterminated here-document > > 11 > > 22 > > 33 > > > > i d

Re: Unnecessary bash warning message

2023-05-08 Thread alex xmb ratchev
On Mon, May 8, 2023, 04:07 Hyunho Cho wrote: > ### > > Machine: x86_64 > OS: linux-gnu > Compiler: gcc > Compilation CFLAGS: -g -O2 -flto=auto -ffat-lto-objects -flto=auto > -ffat-lto-objects -fstack-protector-strong -Wformat >