2
0
mirror of https://github.com/kazhala/dotbare synced 2024-11-16 00:12:47 +00:00
dotbare/scripts/fbackup

108 lines
3.0 KiB
Plaintext
Raw Normal View History

2020-05-11 01:56:27 +00:00
#!/usr/bin/env bash
2020-05-05 05:06:25 +00:00
#
# backup all tracked files
#
# @params
# Globals
2020-05-07 01:56:58 +00:00
# ${mydir}: current dir of the script
2020-05-15 08:25:08 +00:00
# ${backup_type}: types of backup, individual or all
2020-05-07 01:56:58 +00:00
# ${selected_files}: selected files to backup
# ${action_command}: actions to run, cp|mv
2020-05-05 05:06:25 +00:00
# Arguments
# -h|--help: show help message and exit
# -s|--select: select individual files through fzf and backup
# -p PATH|--path PATH: pass in path and backup
# -m|--move: use mv to backup instead of cp
2020-05-05 05:06:25 +00:00
set -e
set -f
2020-05-13 07:30:54 +00:00
mydir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2020-05-05 05:06:25 +00:00
source "${mydir}"/../helper/set_variable.sh
source "${mydir}"/../helper/git_query.sh
function usage() {
echo -e "Usage: dotbare fbackup [-h] [-m] [-s] [-p PATH] ...
Backup files to ${DOTBARE_BACKUP}.
This is useful when untracking files or migrating to new machines.
Default: backup all tracked files using cp command to ${DOTBARE_BACKUP} directory.
optional arguments:
-h, --help\t\tshow this help message and exit.
-s, --select\t\tlist all tracked files and only backup the selected files.
2020-08-24 22:54:32 +00:00
-p PATH, --path PATH\tspecify path of files to backup.
-m, --move\t\tuse 'mv' instead of the default 'cp' command to backup."
2020-05-05 05:06:25 +00:00
}
2020-05-07 01:11:48 +00:00
#######################################
# backup passed in files while preserving directory info
# Arguments:
2020-08-24 22:54:32 +00:00
# $1: files to backup, separate by \n
# $2: action command (cp|mv)
2020-05-07 01:11:48 +00:00
#######################################
function dotbare_backup() {
local selected_files="$1"
local action_command="${2:-cp}"
2020-05-07 01:11:48 +00:00
while IFS= read -r line; do
dir_name=$(dirname "${line}")
[[ ! -d "${DOTBARE_BACKUP}/${dir_name}" ]] && mkdir -p "${DOTBARE_BACKUP}/${dir_name}"
[[ "${action_command}" == "cp" ]] \
&& cp -av "${line}" "${DOTBARE_BACKUP}/${line}" \
&& continue
# Purposly didn't use the -v flag because in finit, error message were
# directed to /dev/null but the cp/mv info will still be printed, causing confusion.
[[ "${action_command}" == "mv" ]] \
&& mv "${line}" "${DOTBARE_BACKUP}/${line}" \
&& echo "${line} -> ${DOTBARE_BACKUP}/${line}"
2020-05-07 01:11:48 +00:00
done <<< "${selected_files}"
2020-05-07 01:54:01 +00:00
exit 0
2020-05-07 01:11:48 +00:00
}
2020-05-15 08:25:08 +00:00
backup_type="all"
action_command='cp'
2020-06-25 00:31:37 +00:00
selected_files=""
while [[ "$#" -gt 0 ]]; do
case "$1" in
-s|--select)
backup_type="select"
shift
2020-05-07 01:54:01 +00:00
;;
2020-06-25 00:31:37 +00:00
-p|--path)
[[ -z "$2" ]] && echo "Invalid option: $1" >&2 && usage && exit 1
selected_files="$2"
shift
shift
;;
2020-06-25 00:31:37 +00:00
-m|--move)
action_command="mv"
2020-06-25 00:31:37 +00:00
shift
2020-05-07 01:40:33 +00:00
;;
2020-06-25 00:31:37 +00:00
-h|--help)
2020-05-07 01:40:33 +00:00
usage
exit 0
;;
*)
2020-06-25 00:31:37 +00:00
echo "Invalid option: $1" >&2
2020-05-07 01:40:33 +00:00
usage
2020-05-13 01:26:37 +00:00
exit 1
2020-05-07 01:40:33 +00:00
;;
esac
done
2020-05-07 01:08:51 +00:00
2020-05-07 01:11:48 +00:00
[[ -n "${selected_files}" ]] && dotbare_backup "${selected_files}" "${action_command}"
2020-05-07 01:54:01 +00:00
cd "${DOTBARE_TREE}"
2020-06-25 00:31:37 +00:00
if [[ "${backup_type}" == 'select' ]]; then
2020-05-07 01:40:33 +00:00
selected_files=$(get_git_file "select files to backup" "raw")
else
2020-07-07 01:49:26 +00:00
selected_files=$(git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" \
2020-05-07 01:40:33 +00:00
ls-files --full-name --directory "${DOTBARE_TREE}")
fi
2020-05-15 07:36:18 +00:00
[[ -z "${selected_files}" ]] && exit 1
dotbare_backup "${selected_files}" "${action_command}"