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.
FlashBackCompile/FlashBack/usr/bin/_FlashBackDelete
MPG13 (Micah Gomez) 92a4f192a1 Compile first DEB
2019-04-02 09:41:55 -07:00

18 lines
339 B
Bash

#!/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