I have a batch file which runs bash and calls a bash script.
My batch file reads: cd F:\cygwin\bin bash --login -i deletescript.sh F:/Progra~1/NAVIEG/queues/ The bash script is: #!/bin/bash cd $1 F:/cygwin/bin/find . -type f -exec awk '(/various/ || /search/ || /keywords/) {print FILENAME}' {} \; | xargs rm When I run the batch file I get: F:\>cd F:\cygwin\bin F:\cygwin\bin>bash --login -i deletescript.sh F:/Progra~1/NAVIEG/queues/ : No such file or directoryine 2: cd: F:/Progra~1/NAVIEG/queues/ It doesn't seem to like the "cd F:/Progra~1/NAVIEG/queues/" However if I load cygwin and type the commands directly, it all works fine. [EMAIL PROTECTED] ~ $ cd F:/Progra~1/NAVIEG/queues/ [EMAIL PROTECTED] /cygdrive/f/Progra~1/NAVIEG/queues $ This script and setup was working with my previous version of cygwin, I guess I must have changed something in the upgrade which has rendered it incorrect, but can't work it out. If anyone can give me pointers as to why it might be failing, I would be grateful. Thanks Ben -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/