Hello,
Tested on cygwin and on linux box. :" based syntax is used ealier in
nutch script too. Commited.
Thanks
Piotr
Erik Hatcher wrote:
I'm getting "expr: syntax error" when running all bin/nutch commands.
It comes from this line:
if expr match `uname` 'CYGWIN*' > /dev/null; then
sho
It works for me and I'm on Cygwin.
Howie
I'm getting "expr: syntax error" when running all bin/nutch commands. It
comes from this line:
if expr match `uname` 'CYGWIN*' > /dev/null; then
should this be modified to be this instead:
if expr `uname` : 'CYGWIN*' > /dev/null; then
That
I'm getting "expr: syntax error" when running all bin/nutch
commands. It comes from this line:
if expr match `uname` 'CYGWIN*' > /dev/null; then
should this be modified to be this instead:
if expr `uname` : 'CYGWIN*' > /dev/null; then
That works for me, but I'm not running Cygwin.