aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/scripts/backup-sims.sh
blob: a449e410ec1df2143463aa7f869eb2f59f405808 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

source common.sh
getPrgDir

for i in $(seq 99)
do
    j=$(num2name ${i})
    if [ -e "${PRGDIR}/../config/${j}" ]
    then
	cd ${PRGDIR}/../config/$j
	# Find out the size of the last backup, base our later sleep on that, but do it now before backup-sim packs it away.
	sizeSleep=`sleepPerSize o "$(getSimName ${i})"`
	./backup-sim
	# Sleep for a while, so that there is plenty of time to do the backup,
	# and we are not keeping the computer very busy if there are lots of sims.
	sleep ${sizeSleep}
    fi
done