I have cygwin bash.sh file that contains the following:
bash.sh:
cd "data processing"
"data processing" at the same directory of bash.sh
I'm trying to run this bash file from cmd not cygwin for some reason. First, I've updated the path environment variable with cygwin bin directory.
cmd command:
cd "<the-bash-file-directory>"
bash --login -c "bash '<the-bash-file-directory>\\bash.sh'"
then it gives me that error:
error
cd: data processing: No such file or directory
I'm a beginner in using cmd and cygwin and really stuck lots of the time at running things from each other and conflating paths!