request

2017-07-14 Thread t
1. Missing quotes # [me@linuxbox me]$ ./trouble.bash ./trouble.bash: line 8430: unexpected EOF while looking for matching " ./trouble.bash: line 8440 systax error: unexpected end of file # We have 2017, please add s

Re: request

2017-07-15 Thread t
[quote=Greg] > You don't know whether it's actually a missing quote. [/quote] [quote=t] There was missing quote. Usually it is correct info from error and it can tell also what character. I'm not a professional programmer, but I think that, Bash only checks the number of quotes

Defaults when cross-compiling

2023-11-06 Thread Michael T. Kloos
I was trying to cross-compile bash for musl libc.  The configure script reports: checking for working sbrk... configure: WARNING: cannot check working sbrk if cross-compiling yes However, I don't believe musl libc supports sbrk. However, autoconf seems to default to assuming yes and sets the H

Re: Defaults when cross-compiling

2023-11-08 Thread Michael T. Kloos
It seems to me that Autoconf (configure) is making some bad choices if it is just guessing that support exists like that, especially when it has a guaranteed fallback.  It's job is to setup the build for the target host system.  I was able to fix the build by using --without-bash-malloc.  Simpl

Missing options in ulimit usage string

2011-08-14 Thread Jessica T McKellar
lease Status: release Description: `help ulimit` is missing the -b option in the usage string and is missing the -T option in both the usage string and the Options section of the help description. doc/FAQ in the bash 4.2 source tarball says both options were added in bash 4.0. Repeat-By: Run

readline doesn't refresh properly anymore

2016-06-02 Thread Charles T. Smith
Hello, I moved from ubuntu 10.04 to 14.04 and now readline usually doesn't refresh my command line when scrolling through my history - the last tokens are often not shown until I move the cursor there. Is that due to a change in bash? TIA, cts

suspect nobody noticed these don't work ...

2016-06-02 Thread Charles T. Smith
Does anybody know how to use ?(pattern)? Or @(pattern)? Or any of them except !(pattern)? If you do an internet search, the man page is always blithely quoted, but only !(pattern) is ever demostrated... I wonder if the others even work? ?(pattern-list) Matches

repeated extended pattern substitution incredibly slow w/large variables

2016-09-18 Thread xa...@t-online.de
.467s 4.014s 40: 17.912s10.886s 50: 38.178s22.391s which seems to indicate that extended pattern matching causes the problem. Please CC answers to me as I am not subscribed to the list.  Gesendet mit Telekom Mail <https://t-online.de/email-kostenlos> - kostenlos und sicher für alle!

Re: repeated extended pattern substitution incredibly slow w/large variables

2016-09-19 Thread xa...@t-online.de
g so slow as compared to simple pattern matching. That's the question.  ---- Gesendet mit Telekom Mail <https://t-online.de/email-kostenlos> - kostenlos und sicher für alle!

bash 5.0 on AIX 7.2 server -- Division by 0 when using bash from shell window

2020-06-29 Thread Krongard, William T. (BLM)
Configuration Information [Automatically generated, do not change]: Machine: powerpc OS: aix6.1.9.0 Compiler: /opt/freeware/bin/gcc -maix64 -O2 Compilation CFLAGS: -g -O2 -Wno-parentheses -Wno-format-security uname output: AIX es2a236d 2 7 00C746B74C00 Machine Type: powerpc-ibm-aix6.1.9.0 Bash Ve

bash 5.0 on AIX 7.2 server -- Division by 0 when using bash from shell window

2020-06-30 Thread Krongard, William T. (BLM)
rver Support landing page To reach out to the Server Support Team through Mattermost: https://mattermost.express-scripts.com/express-scripts/channels/server-support -Original Message- From: Greg Wooledge Sent: Monday, June 29, 2020 4:32 PM To: Krongard, William T. (BLM) Cc: bug-

bash vs sh / ticks appearing

2007-12-29 Thread Tuc at T-B-O-H.NET
Hi, I normally run a program on FreeBSD using its sh, and it runs fine. When I brought it over to Linux using bash its doing some strange stuff... SCRIPT: #!/bin/sh -x SCRIPT=$1 shift EMAIL=$1 echo $SCRIPT $SCRIPT 1>/tmp/mailifoutput.$$ 2>&1 sh/FreeBSD output: # ./script

Re: bash vs sh / ticks appearing

2007-12-29 Thread Tuc at T-B-O-H.NET
> > "Tuc at T-B-O-H.NET" <[EMAIL PROTECTED]> writes: > > > When I brought it over to Linux using bash its doing > > some strange stuff... > > > > SCRIPT: > > > > #!/bin/sh -x > > > > SCRIPT=$1 > > shift > &