I just wanted to ask how I can run my backup script that is used for backing up my Tellico databases using one script to kick off the database backups located in different direcotories at the same time.
I have multiple directories housing my different databases all residing under /home/user/Database/Tellico/
.
For example:
/home/jeff/Database/Tellico/MyBoooks/Software-Backup.sh
/home/jeff/Database/Tellico/Tellico-MyHardware/MyHardware-Backup.sh
/home/jeff/Database/Tellico/Tellico-MySubscriptions/MySubscriptionstc-Backup.sh
I would like to be able to run all the Backup.sh scripts from one location or one script.
What can I use to do this?
The code for my backup script as an example is the following:
#!/bin/bash
# Modified on 12/02/2019
#Database/Tellico/Tellico-MySubscriptions
#new item is move to backdir
# ver 4.0
echo
DateTimeStamp=$(date '+%d-%m-%y-%H:%M')
# FileName=$MySubscriptions
cp MySubscriptions ${DateTimeStamp}-MySubscriptions
mv ${DateTimeStamp}-MySubscriptions ~/Database/Tellico/Tellico-MySubscriptions/Backups