diff options
Diffstat (limited to 'regress/sftp-cmds.sh')
-rw-r--r-- | regress/sftp-cmds.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/regress/sftp-cmds.sh b/regress/sftp-cmds.sh index 0969dbd46..a7d552972 100644 --- a/regress/sftp-cmds.sh +++ b/regress/sftp-cmds.sh | |||
@@ -9,7 +9,14 @@ tid="sftp commands" | |||
9 | 9 | ||
10 | DATA=/bin/ls | 10 | DATA=/bin/ls |
11 | COPY=${OBJ}/copy | 11 | COPY=${OBJ}/copy |
12 | GLOBFILES=`(cd /bin;echo l*)` | 12 | # test that these files are readable! |
13 | for i in `(cd /bin;echo l*)` | ||
14 | do | ||
15 | if [ -r $i ]; then | ||
16 | GLOBFILES="$GLOBFILES $i" | ||
17 | fi | ||
18 | done | ||
19 | |||
13 | 20 | ||
14 | # Path with embedded quote | 21 | # Path with embedded quote |
15 | QUOTECOPY=${COPY}".\"blah\"" | 22 | QUOTECOPY=${COPY}".\"blah\"" |