Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: strange completion
- X-seq: zsh-workers 50
- From: Richard Coleman <coleman@xxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxxxxxxx
- Subject: Re: strange completion
- Date: Mon, 29 May 1995 01:59:52 -0400
- In-reply-to: Your message of "Mon, 29 May 1995 00:13:17 CDT." <199505290513.AAA15886@xxxxxxxxxxxxxxxxxxxxx>
> >woodlawn% rm -rf .p
> >
> >This makes no sense to me...
>
> I am sorry. I just noticed somethign foolish. this works fine
>
> >compctl -x 'C[-1,-*d*]' -g '*.gz *.Z *.z' -g '*(-/)' -- gzip
>
> This still does not work...
Try these. This is from the compctl examples file.
# gzip files, but gzip -d only gzipped or compressed files
compctl -f -x 'R[-*d,^*]' -g '*.gz *.z *.Z' + -g '*(-/)' -- gzip
compctl -g '*.gz *.z *.Z' + -g '*(-/)' gunzip # zcat if you use GNU
compctl -g '*.Z' + -g '*(-/)' uncompress zmore # zcat if you don't use GNU
rc
Messages sorted by:
Reverse Date,
Date,
Thread,
Author