I created a crontab which runs the file "NEW" at 9:05 in the morning daily. Now this file new creates a file "currentdate" which has the current date in it. But I am not able to understand why the file new is not executing and currentdate don't gets created.
crontab I created is- 5 9 * * * /user/project/new
"new" file is as follows and is located at /user/project.
#!/bin/bash
date > currentdate