#!/usr/bin/env bash timestamp="$(date +"%Y%m%d-%H%M%S")-" # If the backup location doesn't exist yet, create it if [ ! -d $aura_states_folder_destination ]; then mkdir -p $aura_states_folder_destination fi if [ -d $aura_states_parent_source ]; then cd $aura_states_parent_source else exit 1 fi echo "$aura_states_folder_source -> $aura_states_folder_destination$timestamp$aura_states_folder_source$tar_suffix$gpg_suffix" # tar in /tmp tar cfJ $tmp$timestamp$aura_states_folder_source$tar_suffix $aura_states_folder_source # gpg to aura_states_folder_destination gpg -e \ -r "$gpg_public_key" \ -o $aura_states_folder_destination$timestamp$aura_states_folder_source$tar_suffix$gpg_suffix \ $tmp$timestamp$aura_states_folder_source$tar_suffix # delete tar in /tmp rm -f $tmp$timestamp$aura_states_folder_source$tar_suffix