]> andersk Git - gssapi-openssh.git/blob - openssh/regress/sftp-glob.sh
e238356a21fa392680780a541fbd85c41a606bc2
[gssapi-openssh.git] / openssh / regress / sftp-glob.sh
1 #       $OpenBSD: sftp-glob.sh,v 1.1 2004/12/10 01:31:30 fgsch Exp $
2 #       Placed in the Public Domain.
3
4 tid="sftp glob"
5
6 BASE=${OBJ}/glob
7 DIR=${BASE}/dir
8 DATA=${DIR}/file
9
10 rm -rf ${BASE}
11 mkdir -p ${DIR}
12 touch ${DATA}
13
14 verbose "$tid: ls file"
15 echo "ls -l ${DIR}/fil*" | ${SFTP} -P ${SFTPSERVER} 2>/dev/null | \
16         grep ${DATA} >/dev/null 2>&1
17 if [ $? -ne 0 ]; then
18         fail "globbed ls file failed"
19 fi
20
21 verbose "$tid: ls dir"
22 echo "ls -l ${BASE}/d*" | ${SFTP} -P ${SFTPSERVER} 2>/dev/null | \
23         grep file >/dev/null 2>&1
24 if [ $? -ne 0 ]; then
25         fail "globbed ls dir failed"
26 fi
27
28 rm -rf ${BASE}
This page took 0.329789 seconds and 3 git commands to generate.