Displaying 1 result from an estimated 1 matches for "rsync_run".
Did you mean:
rsync_rsh
2007 Jul 06
1
quiet option doesnt seem to work
...g some time ago the --quiet option stopped that type of output.
Anyone any ideas?
I cant just pipe 2 to /dev/null as i want to catch errors
Heres my calling bit see :-
# Check if excluding and change Rsync accordingly
if [ ${remote_exclude_stat:+1} ];then
RSYNC_RUN="${RSYNC}
--exclude-from=${remote_exclude_file}"
else
RSYNC_RUN="${RSYNC}"
fi
## THE BIG RUN ###
${RSYNC_RUN} -e "${SSH}"
root@${remote_get_host}:${RLIST} ${remote_get_localdir} &g...