mirror of
https://github.com/ff4500/utilities.git
synced 2026-07-01 11:47:04 -05:00
34 lines
1.0 KiB
Bash
Executable File
34 lines
1.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# User configuration
|
|
# ------------------------------------------------------------------------------
|
|
#
|
|
#
|
|
#
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# User specified directories (no trailing slashes!)
|
|
# ------------------------------------------------------------------------------
|
|
base_dir="$HOME/Desktop/test"
|
|
source_repo_dir="repos"
|
|
output_dir="archive"
|
|
repo_list="${base_dir}/_src/repo_list.txt"
|
|
|
|
# Other config things
|
|
# ------------------------------------------------------------------------------
|
|
title="Repo archiving utility v0.01"
|
|
|
|
|
|
# Variables for functions - Don't mess with these
|
|
# ------------------------------------------------------------------------------
|
|
source="${base_dir}/${source_repo_dir}"
|
|
output="${base_dir}/${output_dir}"
|
|
|
|
# Debugging
|
|
# ------------------------------------------------------------------------------
|
|
print_colors="no"
|
|
|
|
# Colors - source the colors.sh file
|
|
# ------------------------------------------------------------------------------
|
|
source ./_lib/colors.sh
|