Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Another patch to compctl-examples CVS compctl, and a bug?
- X-seq: zsh-workers 1652
- From: "Bart Schaefer" <schaefer@xxxxxxxxxxxxxxxxxxxxxxx>
- To: Zoltan Hidvegi <hzoli@xxxxxxxxxx>
- Subject: Re: Another patch to compctl-examples CVS compctl, and a bug?
- Date: Mon, 15 Jul 1996 00:03:04 -0700
- Cc: zsh-workers@xxxxxxxxxxxxxxx
- In-reply-to: Zoltan Hidvegi <hzoli@xxxxxxxxxx> "Re: Another patch to compctl-examples CVS compctl, and a bug?" (Jul 15, 3:02am)
- References: <199607150102.DAA03226@xxxxxxxxxxxxx>
- Reply-to: schaefer@xxxxxxx
Here's a patch, to be applied on top of my last patch, that incorporates
some of the changes suggested by the discussion. It avoids using $(<...)
construct on nonexistent files because of the stray newline that appears.
I'd still like to know where that's coming from.
*** Misc/compctl-examples.1 Sat Jul 13 16:50:40 1996
--- Misc/compctl-examples Sun Jul 14 23:57:31 1996
***************
*** 439,447 ****
pref=
fi
[[ -n "$pref" && "$pref" != */ ]] && pref=$pref/
! reply=($(for f in "${${${(f@)$({<${pref}CVS/Entries} 2>/dev/null)}#/}%%/*}" \
! do echo $pref$f; done)
! ${pref}*/**/CVS(:h))
}
#------------------------------------------------------------------------------
# RedHat Linux rpm utility
--- 439,451 ----
pref=
fi
[[ -n "$pref" && "$pref" != */ ]] && pref=$pref/
! if [[ -f ${pref}CVS/Entries ]]
! then
! reply=( "${pref}${^${${(f@)$(<${pref}CVS/Entries)}#/}%%/*}"
! ${pref}*/**/CVS(:h) )
! else
! reply=( ${pref}*/**/CVS(:h) )
! fi
}
#------------------------------------------------------------------------------
# RedHat Linux rpm utility
--
Bart Schaefer Brass Lantern Enterprises
http://www.well.com/user/barts http://www.nbn.com/people/lantern
New male in /home/schaefer:
>N 2 Justin William Schaefer Sat May 11 03:43 53/4040 "Happy Birthday"
Messages sorted by:
Reverse Date,
Date,
Thread,
Author