This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.
FlashBackScripts/_FlashBackDelete
2019-04-02 08:41:43 -06:00

18 lines
339 B
Bash
Executable file

#!/bin/bash
shopt -s extglob # "Shell option set extglob" https://www.linuxjournal.com/content/bash-extended-globbing
set -f # "Disable file name generation (globbing)."
DELETEBACKUP=$1
set +f
FLASHBACKDIR="/Library/FlashBack"
DELETELOCATION=$FLASHBACKDIR/Backups/$DELETEBACKUP
# COPY BACKUP TO SYSTEM
rm -r $DELETELOCATION
exit 0