summaryrefslogtreecommitdiff
path: root/Functions/Zftp/zfget_match
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-04-25 15:43:45 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-04-25 15:43:45 +0000
commite8eb43fc308acb3f1a8ebada7633c097e5050e46 (patch)
tree2df36ef3c7709c7d4d3b7bdcb5761f98649859bf /Functions/Zftp/zfget_match
parente74702b467171dbdafb56dfe354794a212e020d9 (diff)
downloadzsh-e8eb43fc308acb3f1a8ebada7633c097e5050e46.tar.gz
zsh-e8eb43fc308acb3f1a8ebada7633c097e5050e46.zip
Initial revision
Diffstat (limited to 'Functions/Zftp/zfget_match')
-rw-r--r--Functions/Zftp/zfget_match27
1 files changed, 27 insertions, 0 deletions
diff --git a/Functions/Zftp/zfget_match b/Functions/Zftp/zfget_match
new file mode 100644
index 000000000..677108ede
--- /dev/null
+++ b/Functions/Zftp/zfget_match
@@ -0,0 +1,27 @@
+# function zfget_match {
+
+emulate -L zsh
+
+# the zfcd hack: this may not be necessary here
+if [[ $1 == $HOME || $1 == $HOME/* ]]; then
+ 1="~${1#$HOME}"
+fi
+
+local tmpf=${TMPPREFIX}zfgm$$
+
+if [[ $ZFTP_SYSTEM == UNIX* && $1 == */* ]]; then
+ # On the first argument to ls, we usually get away with a glob.
+ zftp ls "$1*$2" >$tmpf
+ reply=($(<$tmpf))
+ rm -f $tmpf
+else
+ if (( $#zftp_fcache == 0 )); then
+ # Always cache the current directory and use it
+ # even if the system is UNIX.
+ zftp ls >$tmpf
+ zftp_fcache=($(<$tmpf))
+ rm -f $tmpf
+ fi
+ reply=($zftp_fcache);
+fi
+# }