mirror of
https://github.com/natelandau/shell-scripting-templates.git
synced 2025-11-10 06:03:47 -05:00
17 lines
320 B
Bash
Executable File
17 lines
320 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
if [ -f "${SCRIPTDIR}/../lib/utils.sh" ]; then
|
|
source "${SCRIPTDIR}/../lib/utils.sh"
|
|
else
|
|
echo "Please find the file util.sh and add a reference to it in this script. Exiting."
|
|
exit 1
|
|
fi
|
|
|
|
|
|
# Confirm we have Dropbox
|
|
# hasDropbox
|
|
|
|
|
|
|