modified to not assume destination if not provided
This commit is contained in:
+3
-9
@@ -32,7 +32,7 @@ trap 'fn_terminate_script' SIGINT
|
|||||||
# Small utility functions for reducing code duplication
|
# Small utility functions for reducing code duplication
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
fn_display_usage() {
|
fn_display_usage() {
|
||||||
fn_log_info "Usage : $(basename $0) <source> [[[user@host:]destination] exclude-pattern-file]"
|
fn_log_info "Usage : $(basename $0) <source> <[user@host:]destination> [exclude-pattern-file]"
|
||||||
}
|
}
|
||||||
|
|
||||||
fn_parse_date() {
|
fn_parse_date() {
|
||||||
@@ -114,18 +114,12 @@ SSH_CMD=""
|
|||||||
SSH_FOLDER_PREFIX=""
|
SSH_FOLDER_PREFIX=""
|
||||||
|
|
||||||
#display usage information if required arguments are not passed
|
#display usage information if required arguments are not passed
|
||||||
if [[ "${#@}" -lt 1 ]]; then
|
if [[ "${#@}" -lt 2 ]]; then
|
||||||
fn_display_usage
|
fn_display_usage
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
SRC_FOLDER="${1%/}"
|
SRC_FOLDER="${1%/}"
|
||||||
|
DEST_FOLDER="${2%/}"
|
||||||
#if destination folder is not specified assume current folder
|
|
||||||
if [ -z ${2} ]; then
|
|
||||||
DEST_FOLDER="."
|
|
||||||
else
|
|
||||||
DEST_FOLDER="${2%/}"
|
|
||||||
fi
|
|
||||||
EXCLUSION_FILE="$3"
|
EXCLUSION_FILE="$3"
|
||||||
|
|
||||||
fn_parse_ssh
|
fn_parse_ssh
|
||||||
|
|||||||
Reference in New Issue
Block a user