Crontab not running script
I'm trying to get myself familiar with bash scripting. I created a script to delete all files and folders in a specific directory, and made an entry in crontab. Crontab will not run the script, but I can run it manually. Any ideas?
contab entry:
50 11 * * * /home/backupadmin/test_script.sh
Script:
#!/bin/bash
#++
# This script is ONLY a test
#--
cd /backup_fs2/copy_backup_fs1/
rm -rf MNG0*
|