Advertisement
kerbo_

arma_backup.sh

Feb 12th, 2025 (edited)
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.04 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # Colors
  4. RED="\e[0;91m"
  5. GREEN="\e[0;92m"
  6. YELLOW="\e[0;93m"
  7. NC="\e[0m"
  8.  
  9. # CHANGE ME
  10. profileName="Kerbo"
  11. saveDir="/opt/games/steam/steamapps/compatdata/107410/pfx/drive_c/users/steamuser/Documents/Arma 3 - Other Profiles/${profileName}"
  12. backupDir="/data/backup/savegames/ArmA 3"
  13.  
  14. maxSaves=10
  15. dateString=$(date +"%Y-%m-%d_%H-%M")
  16.  
  17. if [[ ! -d "$backupDir" ]]; then
  18.     mkdir "$backupDir"
  19.     if [[ ! -d "$backupDir" ]]; then
  20.         echo "Error creating backup directory: $backupDir"
  21.         exit 1
  22.     fi
  23. fi
  24.  
  25. configs=("$profileName.ArmA3Profile"
  26.     "$profileName.vars.ArmA3Profile"
  27.     "AntistasiCommunity.vars"
  28.     "AntistasiPlus.vars")
  29.  
  30. cd "$saveDir" || exit 1
  31.  
  32. for config in "${configs[@]}"; do
  33.     if [[ -f "$config" ]]; then
  34.         config_hash=$(md5sum "$config" | cut -d' ' -f1)
  35.         backup=$(ls "${backupDir}"/${config}-* 2>/dev/null | tail -n1)
  36.         backup_hash=""
  37.         if [[ -n "$backup" ]]; then
  38.             backup_hash=$(md5sum "$backup" | cut -d' ' -f1)        
  39.         fi
  40.         #echo config: $config
  41.         #echo backup: $backup
  42.         #echo config_hash: $config_hash
  43.         #echo backup_hash: $backup_hash
  44.         if [[ "$backup_hash" == "$config_hash" ]]; then
  45.             echo -e "${GREEN}$config matches latest backup, no backup needed${NC}"
  46.         else
  47.             cp "$config" "${backupDir}/${config}-${dateString}"
  48.             RET=$?
  49.             if [[ $RET -eq 0 ]]; then
  50.                 echo -e "${YELLOW}Copied $config to ${backupDir}/${config}-${dateString}${NC}"
  51.             else
  52.                 echo -e "${RED}Error! cp returned $RET for $config${NC}"
  53.             fi
  54.         fi
  55.  
  56.         count=$(ls "${backupDir}" | grep -c "${config}-")
  57.         if [[ $count -gt $maxSaves ]]; then
  58.             let trim=($count - $maxSaves)
  59.             if [[ $trim -gt 0 ]]; then
  60.                 echo "Cleaning up $trim old backups for $save"
  61.                 ls "${backupDir}" | grep "${config}-" | head -n $trim | xargs -I SAVE rm "${backupDir}/SAVE"
  62.             fi
  63.         fi
  64.     fi
  65. done
  66.  
  67.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement