bash ignoring set -f on windows

2013-08-12 Thread Craig Ryan
The cygwin bash is ignoring noglob on windows 7 and XP. Cygwin details: CYGWIN_NT-6.1 1.7.17(0.262/5/3) 2012-10-19 14:39 To illustrate, here is a script which calls a java application which I expect to have wildcards passed through as-is to the java main String[ ]args. Source to both as

Re: bash ignoring set -f on windows

2013-08-12 Thread Achim Gratz
Craig Ryan cryan.dublin at gmail.com writes: The cygwin bash is ignoring noglob on windows 7 and XP. Cygwin details: CYGWIN_NT-6.1 1.7.17(0.262/5/3) 2012-10-19 14:39 I think putting the blame on bash is premature. Try replacing the call to java with a script of your own to see what

Re: bash ignoring set -f on windows

2013-08-12 Thread Craig Ryan
I think putting the blame on bash is premature. Try replacing the call to java with a script of your own to see what arguments it get called with, How so? This works on un*x platforms so what am I missing? The script IS my own, if you execute the script as suggested what results did you get

Re: bash ignoring set -f on windows

2013-08-12 Thread Achim Gratz
Craig Ryan writes: I think putting the blame on bash is premature. Try replacing the call to java with a script of your own to see what arguments it get called with, How so? This works on un*x platforms so what am I missing? You are missing that Windows is not Un*x. On Windows, each