Displaying 1 result from an estimated 1 matches for "remote_dest_host".
2003 Oct 22
1
Feature Request - Recursive Rsync Parameter - Example Script
...then
remote_source_host=${source_path_parm%:*}
remote_source_path=${source_path_parm#*:}
fi
# We need to also decide if the destination is a remote host.
# Parse out the <source path> and if it is remote, capture the hostname
if [ `echo $dest_path_parm | grep ":"` ]
then
remote_dest_host=${dest_path_parm%:*}
remote_dest_path=${dest_path_parm#*:}
fi
# At this point we need to see if there are additional directories to
# call with lrsync, as long as our recursion level is > 0....