Displaying 1 result from an estimated 1 matches for "tqcx".
Did you mean:
tqc
2006 Dec 07
1
get errors when doing a tar backup of a windows server with linux smbclient
...BASE='ourserver';
DATE=`date +%Y-wk%U_%b-%d_%a`;
# Misc. variables
MSG1="Tarring up $SERVICE Directory: $SUBDIR to: $BACK";
if [ -f $BACK/$BASE$DATE.tar.bz2 ]; then
echo "File exists, command halted: $BACK/$BASE$DATE.tar.bz2"
else
smbclient $SERVICE -N -TqcX
$BACK/$BASE$DATE.tar "$SUBDIR" "example/1.lck" "example/2.lck" "example/3.lck"
"example/4.lck" "example/5.lck" "example/6.lck" "example/7.lck" "example/8.lck"
bzip2 $BACK/$BASE$DATE.tar
fi
We are us...