Lines Matching refs:COPY
9 DIR=${COPY}.dd
10 DIR2=${COPY}.dd2
12 DIR3=${COPY}.dd.glob[456]
28 rm -rf ${COPY} ${COPY2} ${DIR} ${DIR2} ${COPY3} ${DIR3}
54 $SCP $scpopts ${DATA} ${COPY} || fail "copy failed"
55 cmp ${DATA} ${COPY} || fail "corrupted copy"
59 $SCP $scpopts ${DATA} somehost:${COPY} || fail "copy failed"
60 cmp ${DATA} ${COPY} || fail "corrupted copy"
64 $SCP $scpopts somehost:${DATA} ${COPY} || fail "copy failed"
65 cmp ${DATA} ${COPY} || fail "corrupted copy"
69 cp ${DATA} ${COPY}
70 $SCP $scpopts ${COPY} somehost:${COPY} || fail "copy failed"
71 cmp ${DATA} ${COPY} || fail "corrupted copy"
75 cp ${DATA} ${COPY}
76 $SCP $scpopts somehost:${COPY} ${COPY} || fail "copy failed"
77 cmp ${DATA} ${COPY} || fail "corrupted copy"
81 cat ${DATA} ${DATA} > ${COPY}
82 $SCP $scpopts ${DATA} somehost:${COPY} || fail "copy failed"
83 ls -l $DATA $COPY
84 cmp ${DATA} ${COPY} || fail "corrupted copy"
88 cat ${DATA} ${DATA} > ${COPY}
89 $SCP $scpopts somehost:${DATA} ${COPY} || fail "copy failed"
90 cmp ${DATA} ${COPY} || fail "corrupted copy"
94 cp ${DATA} ${COPY}
95 $SCP $scpopts ${COPY} somehost:${DIR} || fail "copy failed"
96 cmp ${COPY} ${DIR}/copy || fail "corrupted copy"
100 cp ${DATA} ${COPY}
101 $SCP $scpopts ${COPY} ${DIR} || fail "copy failed"
102 cmp ${COPY} ${DIR}/copy || fail "corrupted copy"
106 cp ${DATA} ${COPY}
107 $SCP $scpopts somehost:${COPY} ${DIR} || fail "copy failed"
108 cmp ${COPY} ${DIR}/copy || fail "corrupted copy"
198 echo a > ${COPY}
200 $SCP $scpopts ${DATA} ${COPY} ${COPY2}
201 cmp ${COPY} ${COPY2} >/dev/null && fail "corrupt target"