I wrote three bash files:
incremental_backup
full_backup
execution
Now I want another bash script do the following :
if (date is the start of month 1/-/----)
then
invoke `full_back_up`
else
invoke `incremental_backup`
How can I write this script?
Don't do this. Instead use two separate cron jobs to invoke your tasks.
Try