Searched refs:COPY (Results 1 - 25 of 209) sorted by relevance

123456789

/freebsd-current/crypto/openssh/regress/
H A Dsftp-perm.sh22 rm -f ${COPY} ${COPY}.1
23 test -d ${COPY}.dd && { rmdir ${COPY}.dd || fatal "rmdir ${COPY}.dd"; }
86 "put $DATA $COPY" \
88 "cmp $DATA $COPY" \
89 "test ! -f $COPY"
93 "chmod 0700 $COPY" \
94 "touch $COPY; chmo
[all...]
H A Dsftp-batch.sh8 rm -rf ${COPY} ${COPY}.1 ${COPY}.2 ${COPY}.dd ${BATCH}.*
11 get $DATA $COPY
12 put ${COPY} ${COPY}.1
13 rm ${COPY}
14 -put ${COPY} ${COPY}
[all...]
H A Dsftp-badcmds.sh10 rm -rf ${COPY} ${COPY}.1 ${COPY}.2 ${COPY}.dd
12 rm -f ${COPY}
14 echo "get $NONEXIST $COPY" | ${SFTP} -D ${SFTPSERVER} >/dev/null 2>&1 \
16 test -f ${COPY} && fail "existing copy after get nonexistent"
18 rm -f ${COPY}.dd/*
23 test -f ${COPY}.dd/$x && fail "existing copy after get nonexistent"
26 rm -f ${COPY}
[all...]
H A Dsftp-cmds.sh19 QUOTECOPY=${COPY}".\"blah\""
20 QUOTECOPY_ARG=${COPY}'.\"blah\"'
22 SPACECOPY="${COPY} this has spaces.txt"
23 SPACECOPY_ARG="${COPY}\ this\ has\ spaces.txt"
25 GLOBMETACOPY="${COPY} [metachar].txt"
27 rm -rf ${COPY} ${COPY}.1 ${COPY}.2 ${COPY}.dd ${COPY}
[all...]
H A Dsftp.sh9 get $DATA ${COPY}.1
10 put $DATA ${COPY}.2
19 rm -f ${COPY}.1 ${COPY}.2
26 cmp $DATA ${COPY}.1 || fail "corrupted copy after get"
27 cmp $DATA ${COPY}.2 || fail "corrupted copy after put"
31 rm -f ${COPY}.1 ${COPY}.2
H A Dstderr-after-eof.sh7 rm -f ${DATA} ${COPY}
15 2> ${COPY}
20 egrep 'Disconnecting: Received extended_data after EOF' ${COPY} &&
22 cmp ${DATA} ${COPY} || fail "stderr corrupt"
24 rm -f ${DATA} ${COPY}
H A Dtransfer.sh6 rm -f ${COPY}
7 ${SSH} -n -q -F $OBJ/ssh_proxy somehost cat ${DATA} > ${COPY}
11 cmp ${DATA} ${COPY} || fail "corrupted copy"
15 rm -f ${COPY}
17 ${SSH} -q -F $OBJ/ssh_proxy somehost "cat > ${COPY}"
21 cmp $DATA ${COPY} || fail "corrupted copy"
23 rm -f ${COPY}
H A Dssh-com-sftp.sh10 get $DATA ${COPY}.1
11 put $DATA ${COPY}.2
51 rm -f ${COPY}.1 ${COPY}.2
58 cmp $DATA ${COPY}.1 || fail "corrupted copy after get"
59 cmp $DATA ${COPY}.2 || fail "corrupted copy after put"
64 rm -f ${COPY}.1 ${COPY}.2
H A Dstderr-data.sh10 2> ${COPY}
15 cmp ${DATA} ${COPY} || fail "stderr corrupt"
16 rm -f ${COPY}
20 > /dev/null 2> ${COPY}
25 cmp ${DATA} ${COPY} || fail "stderr corrupt"
26 rm -f ${COPY}
H A Dputty-transfer.sh16 rm -f ${COPY}
21 -i ${OBJ}/putty.rsa2 cat ${DATA} > ${COPY}
25 cmp ${DATA} ${COPY} || fail "corrupted copy"
29 rm -f ${COPY}
33 "cat > ${COPY}"
37 cmp $DATA ${COPY} || fail "corrupted copy"
40 rm -f ${COPY}
H A Dscp-uri.sh9 DIR=${COPY}.dd
10 DIR2=${COPY}.dd2
20 rm -rf ${COPY} ${COPY2} ${DIR} ${DIR2}
37 $SCP $scpopts ${DATA} "scp://${USER}@somehost:${PORT}/${COPY}" || fail "copy failed"
38 cmp ${DATA} ${COPY} || fail "corrupted copy"
42 $SCP $scpopts "scp://${USER}@somehost:${PORT}/${DATA}" ${COPY} || fail "copy failed"
43 cmp ${DATA} ${COPY} || fail "corrupted copy"
47 cp ${DATA} ${COPY}
48 $SCP $scpopts ${COPY} "scp://${USER}@somehost:${PORT}/${DIR}" || fail "copy failed"
49 cmp ${COPY}
[all...]
H A Dscp.sh9 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} || fai
[all...]
H A Dsftp-chroot.sh27 ${SFTP} -S "$SSH" -F $OBJ/ssh_config host:/${FILENAME} $COPY \
30 cmp $PRIVDATA $COPY || fail "$PRIVDATA $COPY differ"
42 ${SFTP} -S "$SSH" -F $OBJ/ssh_config host:/${FILENAME} $COPY \
45 cmp $PRIVDATA $COPY || fail "$PRIVDATA $COPY differ"
H A Dreexec.sh24 rm -f ${COPY}
26 cat ${DATA} > ${COPY}
30 cmp ${DATA} ${COPY} || fail "corrupted copy"
31 rm -f ${COPY}
H A Dscp3.sh7 DIR=${COPY}.dd
8 DIR2=${COPY}.dd2
18 rm -rf ${COPY} ${COPY2} ${DIR} ${DIR2}
45 $SCP $scpopts -3 hostA:${DATA} hostB:${COPY} || fail "copy failed"
46 cmp ${DATA} ${COPY} || fail "corrupted copy"
50 cp ${DATA} ${COPY}
51 $SCP $scpopts -3 hostA:${COPY} hostB:${DIR} || fail "copy failed"
52 cmp ${COPY} ${DIR}/copy || fail "corrupted copy"
62 echo a > ${COPY}
64 $SCP $scpopts -3 hostA:${DATA} hostA:${COPY} host
[all...]
H A Dsftp-uri.sh9 DIR=${COPY}.dd
10 DIR2=${COPY}.dd2
14 rm -rf ${COPY} ${COPY2} ${DIR} ${DIR2}
26 ${SFTP} -q -S "$SSH" -F $OBJ/ssh_config "sftp://${USER}@somehost:${PORT}/${DATA}" ${COPY} || fail "copy failed"
27 cmp ${DATA} ${COPY} || fail "corrupted copy"
31 cp ${DATA} ${COPY}
32 ${SFTP} -q -S "$SSH" -F $OBJ/ssh_config "sftp://${USER}@somehost:${PORT}/${COPY}" ${DIR} || fail "copy failed"
33 cmp ${COPY} ${DIR}/copy || fail "corrupted copy"
H A Dconch-ciphers.sh19 rm -f ${COPY}
24 127.0.0.1 "cat ${DATA}" 2>/dev/null | cat > ${COPY}
28 cmp ${DATA} ${COPY} || fail "corrupted copy"
30 rm -f ${COPY}
H A Ddropbear-kex.sh21 rm -f ${COPY}
25 -J "$OBJ/ssh_proxy.sh" somehost cat ${DATA} > ${COPY}
29 cmp ${DATA} ${COPY} || fail "corrupted copy"
31 rm -f ${COPY}
H A Ddropbear-ciphers.sh23 rm -f ${COPY}
25 -c $c -m $m -J "$OBJ/ssh_proxy.sh" somehost cat ${DATA} > ${COPY}
29 cmp ${DATA} ${COPY} || fail "corrupted copy"
33 rm -f ${COPY}
H A Dputty-ciphers.sh46 rm -f ${COPY}
48 cat ${DATA} > ${COPY}
52 cmp ${DATA} ${COPY} || fail "corrupted copy"
55 rm -f ${COPY}
H A Dmultiplex.sh61 rm -f ${COPY}
63 ${SSH} -F $OBJ/ssh_config -S$CTL otherhost cat ${DATA} > ${COPY}
64 test -f ${COPY} || fail "ssh -Sctl: failed copy ${DATA}"
65 cmp ${DATA} ${COPY} || fail "ssh -Sctl: corrupted copy of ${DATA}"
67 rm -f ${COPY}
69 ${SSH} -F $OBJ/ssh_config -S $CTL otherhost cat ${DATA} > ${COPY}
70 test -f ${COPY} || fail "ssh -S ctl: failed copy ${DATA}"
71 cmp ${DATA} ${COPY} || fail "ssh -S ctl: corrupted copy of ${DATA}"
73 rm -f ${COPY}
75 echo "get ${DATA} ${COPY}" | \
[all...]
H A Dchannel-timeout.sh129 rm -f ${COPY}
130 $SFTP -qS $SSH -F $OBJ/ssh_proxy somehost:$DATA $COPY
135 cmp $DATA $COPY || fail "corrupted copy"
142 rm -f ${COPY}
143 $SFTP -qS $SSH -F $OBJ/ssh_proxy somehost:$DATA $COPY
148 test -f $COPY && cmp $DATA $COPY && fail "intact copy"
155 rm -f ${COPY}
156 $SFTP -qS $SSH -F $OBJ/ssh_proxy somehost:$DATA $COPY
161 cmp $DATA $COPY || fai
[all...]
H A Drekey.sh22 rm -f ${COPY} ${LOG}
24 ${SSH} <${DATA} $_opts -v -F $OBJ/ssh_proxy somehost "cat > ${COPY}"
28 cmp ${DATA} ${COPY} || fail "corrupted copy ($@)"
72 rm -f ${COPY} ${LOG}
74 $OBJ/ssh_proxy somehost "cat >${COPY};sleep $s;sleep 10"
78 cmp ${DATA} ${COPY} || fail "corrupted copy"
89 rm -f ${COPY} ${LOG}
107 rm -f ${COPY} ${LOG}
109 > ${COPY}
113 cmp ${DATA} ${COPY} || fai
[all...]
H A Dssh-com-client.sh97 rm -f ${COPY}
98 ${ssh2} -F ${OBJ}/ssh2_config somehost cat ${DATA} > ${COPY}
102 cmp ${DATA} ${COPY} || fail "ssh2 ${v} cat test (receive) data mismatch"
106 rm -f ${COPY}
108 ${ssh2} -F ${OBJ}/ssh2_config host "cat > ${COPY}"
112 cmp ${DATA} ${COPY} || \
117 rm -f ${COPY}
/freebsd-current/lib/libc/gen/
H A Dstatvfs.c107 #define COPY(field) \ macro
116 COPY(f_bavail);
117 COPY(f_bfree);
118 COPY(f_blocks);
119 COPY(f_ffree);
120 COPY(f_files);

Completed in 131 milliseconds

123456789