2023-03-16 16:27:11 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# This is just a simple script to backup VMCs in case something goes wrong
|
|
|
|
set -x
|
|
|
|
|
|
|
|
VMCDIR=~/PS2/VMC
|
|
|
|
BACKUPDIR=~/PS2-VMC-backups
|
|
|
|
|
|
|
|
mkdir -p $BACKUPDIR
|
|
|
|
# E.g. 2023-075TT1719, I don't think change of month matters and these are
|
|
|
|
# going to be small 8MB files anyway so seeing the age at glance is nice.
|
2023-03-19 19:12:12 +01:00
|
|
|
# WARNING: This doesn't handle DST switch although I don't expect to be
|
2023-03-16 16:27:11 +01:00
|
|
|
# playing or running this script during the problem hours
|
2023-03-19 19:12:12 +01:00
|
|
|
cp -arv "$VMCDIR" "$BACKUPDIR/$(date +%Y-%jT%H%M)"
|
2023-03-16 16:27:11 +01:00
|
|
|
|
2023-03-18 12:44:05 +01:00
|
|
|
# Samba is fun with permissions
|
|
|
|
chmod -R 777 $VMCDIR
|
|
|
|
chmod -R 777 $BACKUPDIR
|
|
|
|
|
2023-03-17 20:50:10 +01:00
|
|
|
# Curiosity, show the space used
|
|
|
|
du -hc --time $BACKUPDIR
|
|
|
|
|
2023-03-16 16:27:11 +01:00
|
|
|
set +x
|