From 9a6f55dc7a047a07fe40fb52a1badf62e4917c98 Mon Sep 17 00:00:00 2001 From: Han Pingtian Date: Tue, 26 May 2015 15:53:47 +0800 Subject: 35295: Try harder with zftp directory listing --- Functions/Zftp/zfcd_match | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'Functions') diff --git a/Functions/Zftp/zfcd_match b/Functions/Zftp/zfcd_match index 9159f496c..d977983bf 100644 --- a/Functions/Zftp/zfcd_match +++ b/Functions/Zftp/zfcd_match @@ -25,7 +25,13 @@ if [[ $ZFTP_SYSTEM = UNIX* ]]; then fi # If we're using -F, we get away with using a directory # to list, but not a glob. Don't ask me why. - reply=(${${(M)${(f)"$(zftp ls -lF $dir)"}:#d*}/(#b)*[[:space:]](*)\//$match[1]}) + reply=(${(M)${(f)"$(zftp ls -lF $dir)"}:#d([^[:space:]]##[[:space:]]##)(#c8)?##\/}) + + # If ls -lF doesn't work, try dir ... + if ! (($#reply)); then + reply=(${(M)${(f)"$(zftp dir $dir)"}:#d([^[:space:]]##[[:space:]]##)(#c8)?##}) + fi + reply=(${reply/(#b)d([^[:space:]]##[[:space:]]##)(#c8)([^\/]##)\/#/$match[2]}) # () { # zftp ls -LF $dir >|$1 # reply=($(awk '/\/$/ { print substr($1, 1, length($1)-1) }' $1)) -- cgit 1.4.1