#!/bin/bash
echo "Testing"
cd "/cygdrive/x/Internal Communications/Riccardo/"
filename=htdocs-`date +%A`.tar.gz
tar cvzf $filename "/cygdrive/c/Program Files/Zend/Apache2/htdocs"
The above script is working when it is called inside cygwin console, but when I try to call it from a bacth file is get command not found for date and tar command. I think that bash.exe does not have the PATH set up.
I need to run that script from that bath file because I want to add the script to the task scheduler.
Thanks.