This is how we run scripts from cron, in clish add the following command:
add cron job MDS_backup command "/backup/scripts/FWBackupMDS >/dev/null 2>&1" recurrence daily time 1:00
The >/dev/null 2>&1 makes sure the output is redirected properly. On the first line of the script put this line:
#!/bin/sh
After that all other things you need to do.
<crontab -l> shows me:
# This file was AUTOMATICALLY GENERATED
# Generated by /bin/cron_xlate on Mon Aug 7 08:42:47 2017
#
# DO NOT EDIT
#
SHELL=/bin/bash
MAILTO=""
#
# mins hrs daysinm months daysinw command
#
##MDS_backup
00 1 * * * /backup/scripts/FWBackupMDS >/dev/null 2>&1
Regards, Maarten