update zsh/stable to 4.0.1:
- add two new sub-packages, -modules and -zftp which adds dynamically loadable modules and an embedded ftp client to zsh. - static FLAVOR disable all dynamic modules and link statically zsh. Otherwise: Zsh is a UNIX command interpreter (shell) which of the standard shells most resembles the Korn shell (ksh), although it is not completely compatible. It includes enhancements of many types, notably in the command-line editor, options for customizing its behaviour, filename globbing, features to make C-shell (csh) users feel more at home and extra features drawn from tcsh (another custom shell). checked by naddy@ WWW: http://www.zsh.org/
This commit is contained in:
parent
ea553ab4b0
commit
c0ba28dd9c
@ -1,8 +1,10 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2001/05/10 19:42:35 lebel Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2001/06/03 01:01:36 lebel Exp $
|
||||
|
||||
COMMENT= "the Z shell, Bourne shell-compatible, release flavor"
|
||||
COMMENT-modules="the Z shell modules (without zftp)"
|
||||
COMMENT-zftp= "the Z shell embedded ftp client"
|
||||
|
||||
VERSION= 3.0.8
|
||||
VERSION= 4.0.1
|
||||
DISTNAME= zsh-${VERSION}
|
||||
CATEGORIES= shells
|
||||
NEED_VERSION= 1.402
|
||||
@ -19,21 +21,31 @@ HOMEPAGE= http://www.zsh.org/
|
||||
|
||||
MAINTAINER= David Lebel <lebel@openbsd.org>
|
||||
|
||||
USE_BZIP2= Yes
|
||||
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
SUBST_VARS= VERSION
|
||||
|
||||
CONFIGURE_STYLE= gnu dest
|
||||
CONFIGURE_ARGS= --enable-zsh-mem --enable-zsh-secure-free
|
||||
|
||||
FLAVORS= static
|
||||
FLAVOR?=
|
||||
|
||||
CONFIGURE_STYLE= gnu
|
||||
CONFIGURE_ARGS= --enable-zsh-mem --enable-zsh-secure-free
|
||||
|
||||
.if ${FLAVOR:L} == "static"
|
||||
CONFIGURE_ENV= LDFLAGS="-static"
|
||||
CONFIGURE_ARGS+=--disable-dynamic
|
||||
.else
|
||||
# we only enable sub-packages if the FLAVOR is not static
|
||||
MULTI_PACKAGES= -modules -zftp
|
||||
.for i in ${MULTI_PACKAGES}
|
||||
PKGNAME$i= zsh$i-${VERSION}
|
||||
.endfor
|
||||
CONFIGURE_ARGS+= ${CONFIGURE_SHARED:S/shared/dynamic/}
|
||||
.endif
|
||||
|
||||
SUBST_VARS= VERSION
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (zsh-3.0.8.tar.gz) = 6c4c62da23d2b9d8d7599768193cc782
|
||||
RMD160 (zsh-3.0.8.tar.gz) = ea0f8e026f71e56ddaab04d8e5926bfd0914a4f1
|
||||
SHA1 (zsh-3.0.8.tar.gz) = d5d07abdd9c0f063c79d19de9482f7517016b54d
|
||||
MD5 (zsh-4.0.1.tar.bz2) = ba2fb1bef2ed1522844b22bc9c14f916
|
||||
RMD160 (zsh-4.0.1.tar.bz2) = 7e40c4fd39fd747e11b8439230a0d6a86535a281
|
||||
SHA1 (zsh-4.0.1.tar.bz2) = f47c555f4d85745017869b15e22d64a67304a716
|
||||
|
@ -1,29 +1,50 @@
|
||||
$OpenBSD: patch-Doc_Makefile_in,v 1.1 2001/05/10 19:50:28 lebel Exp $
|
||||
--- Doc/Makefile.in.orig Mon Aug 2 01:54:25 1999
|
||||
+++ Doc/Makefile.in Thu May 10 15:46:53 2001
|
||||
@@ -27,7 +27,7 @@
|
||||
SHELL = /bin/sh
|
||||
$OpenBSD: patch-Doc_Makefile_in,v 1.2 2001/06/03 01:01:37 lebel Exp $
|
||||
--- Doc/Makefile.in.orig Tue Dec 5 09:32:09 2000
|
||||
+++ Doc/Makefile.in Mon May 14 10:06:59 2001
|
||||
@@ -37,7 +37,7 @@ INSTALL = @INSTALL@
|
||||
|
||||
@DEFS_MK@
|
||||
|
||||
# Program to format Texinfo source into Info files.
|
||||
-MAKEINFO = makeinfo
|
||||
+MAKEINFO = makeinfo --no-split
|
||||
# Program to format Texinfo source into DVI files.
|
||||
TEXI2DVI = texi2dvi
|
||||
# Program to convert DVI files to PostScript
|
||||
@@ -91,6 +91,7 @@ all: $(MAN) zsh.info
|
||||
everything: all zsh_us.ps zsh_a4.ps zsh_toc.html
|
||||
DVIPS = dvips
|
||||
TEXI2HTML = texi2html -expandinfo -split_chapter
|
||||
@@ -97,6 +97,7 @@ info: zsh.info
|
||||
.PHONY: info
|
||||
|
||||
zsh.info: zsh.texi
|
||||
zsh.info: $(sdir)/zsh.texi
|
||||
+ @rm -f zsh.info*
|
||||
@$(MAKEINFO) -I$(srcdir) $(srcdir)/zsh.texi || { \
|
||||
echo Info documentation cannot be compiled without $(MAKEINFO). ; \
|
||||
echo You can find precompiled info files in zsh-doc.tar.gz. ; }
|
||||
@@ -125,7 +126,7 @@ install.man: $(MAN)
|
||||
# install info pages, creating install directory if necessary
|
||||
install.info: zsh.info
|
||||
$(top_srcdir)/mkinstalldirs $(infodir)
|
||||
- for file in zsh.info zsh.info-[1-9]*; do \
|
||||
+ for file in zsh.info; do \
|
||||
[ -f "$$file" ] && $(INSTALL_DATA) $$file $(infodir) ; \
|
||||
done
|
||||
$(MAKEINFO) $(sdir)/zsh.texi
|
||||
|
||||
.yo.1:
|
||||
@@ -241,11 +242,11 @@ Zsh/manmodmenu.yo: $(MODDOCSRC)
|
||||
# ========== DEPENDENCIES FOR INSTALLING ==========
|
||||
|
||||
# install just installs the manual pages
|
||||
-install: install.man
|
||||
+install: install.man install.info
|
||||
.PHONY: install
|
||||
|
||||
# uninstall just unistalls the manual pages
|
||||
-uninstall: uninstall.man
|
||||
+uninstall: uninstall.man uninstall.info
|
||||
.PHONY: uninstall
|
||||
|
||||
# install man pages, creating install directory if necessary
|
||||
@@ -265,13 +266,13 @@ install.info: texi
|
||||
sed '/^@setfilename/s|zsh|$(tzsh)|' \
|
||||
< $(sdir)/zsh.texi > infodir/tzsh.texi && \
|
||||
(cd infodir && $(MAKEINFO) tzsh.texi) && \
|
||||
- for file in infodir/$(tzsh).info*; do \
|
||||
+ for file in infodir/$(tzsh).info; do \
|
||||
$(INSTALL_DATA) $$file $(DESTDIR)$(infodir) || exit 1; \
|
||||
done \
|
||||
); then \
|
||||
if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
|
||||
install-info --dir-file=$(DESTDIR)$(infodir)/dir \
|
||||
- $(infodir)/$(tzsh).info; \
|
||||
+ $(DESTDIR)$(infodir)/$(tzsh).info; \
|
||||
else true; fi; \
|
||||
rm -rf infodir; \
|
||||
exit 0; \
|
||||
|
@ -1,10 +1,10 @@
|
||||
$OpenBSD: patch-Doc_zsh_texi,v 1.1 2001/05/10 19:50:28 lebel Exp $
|
||||
--- Doc/zsh.texi.orig Tue Feb 29 03:28:45 2000
|
||||
+++ Doc/zsh.texi Thu May 10 15:46:54 2001
|
||||
@@ -2,6 +2,10 @@
|
||||
@c %**start of header
|
||||
$OpenBSD: patch-Doc_zsh_texi,v 1.2 2001/06/03 01:01:37 lebel Exp $
|
||||
--- Doc/zsh.texi.orig Wed May 9 05:52:45 2001
|
||||
+++ Doc/zsh.texi Mon May 14 09:56:09 2001
|
||||
@@ -7,6 +7,10 @@
|
||||
@end iftex
|
||||
@setfilename zsh.info
|
||||
@settitle zsh
|
||||
@settitle zsh
|
||||
+@dircategory Shells
|
||||
+@direntry
|
||||
+* Zsh: (zsh). The Z shell.
|
||||
@ -12,49 +12,129 @@ $OpenBSD: patch-Doc_zsh_texi,v 1.1 2001/05/10 19:50:28 lebel Exp $
|
||||
@c %**end of header
|
||||
|
||||
@ifinfo
|
||||
@@ -834,7 +838,7 @@ to prevent an alias being defined for @s
|
||||
A character may be @dfn{quoted} (that is, made to stand for itself) by
|
||||
preceding it with a @code{\}. @code{\} followed by a newline is
|
||||
ignored. All characters enclosed between a pair of single quotes
|
||||
-(@t{@value{dsq}}) are quoted, except the first character of @code{histchars}
|
||||
+(@t{'}@t{'}) are quoted, except the first character of @code{histchars}
|
||||
(@code{!} by default). A single quote cannot appear within single
|
||||
quotes. Inside double quotes (@code{""}), parameter and command
|
||||
substitution occurs, and @code{\} quotes the characters @code{\},
|
||||
@@ -1622,7 +1626,7 @@ case. A history substitution begins wit
|
||||
@code{histchars} parameter which is @code{!} by default and may occur
|
||||
anywhere on the command line; history substitutions do not nest. The
|
||||
@code{!} can be escaped with @code{\} or can be enclosed between a pair of
|
||||
-single quotes (@t{@value{dsq}})
|
||||
+single quotes (@t{'}@t{'})
|
||||
to suppress its special meaning. Double quotes will not work for this.
|
||||
@@ -1271,14 +1275,14 @@ entirely quoted. A literal `@t{'}' char
|
||||
string by using the `@t{\'}' escape.
|
||||
|
||||
@noindent
|
||||
@@ -5183,7 +5187,7 @@ Array expansions of the form @code{foo$@
|
||||
@cindex rc, quoting style
|
||||
@cindex quoting style, rc
|
||||
@pindex RC_QUOTES
|
||||
-Allow the character sequence @t{@value{dsq}} to signify a single quote within
|
||||
+Allow the character sequence @t{'}@t{'} to signify a single quote within
|
||||
singly quoted strings.
|
||||
|
||||
@item RCS (+f)
|
||||
@@ -7008,7 +7012,8 @@ the empty string all words are taken (as
|
||||
use is
|
||||
-All characters enclosed between a pair of single quotes (@t{@value{dsq}}) that
|
||||
+All characters enclosed between a pair of single quotes (@t{'}@t{'}) that
|
||||
is not preceded by a `@t{$}' are quoted. A single quote cannot appear
|
||||
within single quotes unless the option @t{RC_QUOTES} is set, in which case
|
||||
a pair of single quotes are turned into a single quote. For example,
|
||||
|
||||
@noindent
|
||||
@example
|
||||
-compctl -D -f + -H 0 @value{dsq} -X '(No file found; using history)'
|
||||
+
|
||||
+compctl -D -f + -H 0 @t{'}@t{'} -X '(No file found; using history)'
|
||||
-print @value{dsq}@value{dsq}
|
||||
+print @t{'}@t{'}@t{'}@t{'}
|
||||
@end example
|
||||
|
||||
which forces completion to look back in the history list for a word if no
|
||||
@@ -7071,7 +7076,7 @@ first word in the range is instead taken
|
||||
name completion performed on the first word in the range. For example,
|
||||
@noindent
|
||||
@@ -2780,7 +2784,7 @@ that is to be assigned to the @emph{next
|
||||
A history expansion begins with the first character of the @t{histchars}
|
||||
parameter, which is `@t{!}' by default, and may occur anywhere on the
|
||||
command line; history expansions do not nest. The `@t{!}' can be escaped
|
||||
-with `@t{\}' or can be enclosed between a pair of single quotes (@t{@value{dsq}})
|
||||
+with `@t{\}' or can be enclosed between a pair of single quotes (@t{'}@t{'})
|
||||
to suppress its special meaning. Double quotes will @emph{not} work for
|
||||
this. Following this history character is an optional event designator
|
||||
(@ref{Event Designators}) and then an optional word
|
||||
@@ -6670,7 +6674,7 @@ For example,
|
||||
@example
|
||||
unsetopt localtraps
|
||||
trap - INT
|
||||
-fn() @{ setopt localtraps; trap @value{dsq} INT; sleep 3; @}
|
||||
+fn() @{ setopt localtraps; trap @t{'}@t{'} INT; sleep 3; @}
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
@@ -6899,7 +6903,8 @@ Array expansions of the form
|
||||
@cindex rc, quoting style
|
||||
@cindex quoting style, rc
|
||||
@item @t{RC_QUOTES}
|
||||
-Allow the character sequence `@t{@value{dsq}}' to signify a single quote
|
||||
+Allow the character sequence `@t{'}@t{'}' to signify a single
|
||||
+quote
|
||||
within singly quoted strings. Note this does not apply in quoted strings
|
||||
using the format @t{$'}@var{...}@t{'}, where a backslashed single quote can
|
||||
be used.
|
||||
@@ -10456,7 +10461,7 @@ An interrupt character will not be inser
|
||||
@item @t{quote-line} (ESC-') (unbound) (unbound)
|
||||
Quote the current line; that is, put a `@t{'}' character at the
|
||||
beginning and the end, and convert all `@t{'}' characters
|
||||
-to `@t{'\@value{dsq}}'.
|
||||
+to `@t{'\}@t{'}@t{'}'.
|
||||
|
||||
@tindex quote-region
|
||||
@item @t{quote-region} (ESC-") (unbound) (unbound)
|
||||
@@ -13473,7 +13478,7 @@ different types of matches displayed sep
|
||||
|
||||
@noindent
|
||||
@example
|
||||
-zstyle ':completion:*' group-name @value{dsq}
|
||||
+zstyle ':completion:*' group-name @t{'}@t{'}
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
@@ -13740,7 +13745,7 @@ zstyle ':completion:*:default' list-colo
|
||||
|
||||
@noindent
|
||||
The default colors are the same as for the GNU @t{ls} command and can be
|
||||
-obtained by setting the style to an empty string (i.e. @t{@value{dsq}}).
|
||||
+obtained by setting the style to an empty string (i.e. @t{'}@t{'}).
|
||||
|
||||
@kindex list-packed, completion style
|
||||
@item @t{list-packed}
|
||||
@@ -13825,7 +13830,7 @@ completion one would do:
|
||||
|
||||
@noindent
|
||||
@example
|
||||
-zstyle ':completion:*' matcher-list @value{dsq} 'm:@{a-zA-Z@}=@{A-Za-z@}'
|
||||
+zstyle ':completion:*' matcher-list @t{'}@t{'} 'm:@{a-zA-Z@}=@{A-Za-z@}'
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
@@ -13850,7 +13855,7 @@ the @t{_complete} completer, one would d
|
||||
@example
|
||||
zstyle ':completion:*' completer _complete _prefix
|
||||
zstyle ':completion:*:complete:*' matcher-list \
|
||||
- @value{dsq} 'm:@{a-zA-Z@}=@{A-Za-z@}'
|
||||
+ @t{'}@t{'} 'm:@{a-zA-Z@}=@{A-Za-z@}'
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
@@ -13868,7 +13873,7 @@ match specifications for each occurrence
|
||||
@example
|
||||
zstyle ':completion:*' completer _complete _correct _complete:foo
|
||||
zstyle ':completion:*:complete:*' matcher-list \
|
||||
- @value{dsq} 'm:@{a-zA-Z@}=@{A-Za-z@}'
|
||||
+ @t{'}@t{'} 'm:@{a-zA-Z@}=@{A-Za-z@}'
|
||||
zstyle ':completion:*:foo:*' matcher-list \
|
||||
'm:@{a-zA-Z@}=@{A-Za-z@} r:|[-_./]=* r:|=*'
|
||||
@end example
|
||||
@@ -16799,7 +16804,7 @@ generates at least one match. E.g.:
|
||||
|
||||
@noindent
|
||||
@example
|
||||
-compctl -M @value{dsq} 'm:@{a-zA-Z@}=@{A-Za-z@}'
|
||||
+compctl -M @t{'}@t{'} 'm:@{a-zA-Z@}=@{A-Za-z@}'
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
@@ -17011,7 +17016,7 @@ use is
|
||||
|
||||
@noindent
|
||||
@example
|
||||
-compctl -D -f + -H 0 @value{dsq}
|
||||
+compctl -D -f + -H 0 @t{'}@t{'}
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
@@ -17099,7 +17104,7 @@ performed on the first word in the range
|
||||
|
||||
@noindent
|
||||
@example
|
||||
-compctl -x 'r[-exec,;]' -l @value{dsq} -- find
|
||||
+compctl -x 'r[-exec,;]' -l @t{'}@t{'} -- find
|
||||
@end example
|
||||
|
||||
completes arguments between @code{-exec} and the following @code{;} (or the
|
||||
@noindent
|
||||
|
14
shells/zsh/stable/patches/patch-Makefile_in
Normal file
14
shells/zsh/stable/patches/patch-Makefile_in
Normal file
@ -0,0 +1,14 @@
|
||||
$OpenBSD: patch-Makefile_in,v 1.1 2001/06/03 01:01:37 lebel Exp $
|
||||
--- Makefile.in.orig Sun May 21 14:31:05 2000
|
||||
+++ Makefile.in Thu May 10 15:48:42 2001
|
||||
@@ -60,8 +60,8 @@ install-strip:
|
||||
$(MAKE) install STRIPFLAGS="-s"
|
||||
|
||||
# install/uninstall most things
|
||||
-install: install.bin install.modules install.fns install.man
|
||||
-uninstall: uninstall.bin uninstall.modules uninstall.fns uninstall.man
|
||||
+install: install.bin install.modules install.fns install.man install.info
|
||||
+uninstall: uninstall.bin uninstall.modules uninstall.fns uninstall.man uninstall.info
|
||||
|
||||
# install/uninstall just the binary
|
||||
install.bin uninstall.bin:
|
@ -1,12 +0,0 @@
|
||||
$OpenBSD: patch-Src_Makefile_in,v 1.1 2001/05/10 19:50:29 lebel Exp $
|
||||
--- Src/Makefile.in.orig Mon Aug 2 01:54:26 1999
|
||||
+++ Src/Makefile.in Thu May 10 15:46:54 2001
|
||||
@@ -148,7 +148,7 @@ uninstall: uninstall.bin
|
||||
# install binary, creating install directory if necessary
|
||||
install.bin: zsh
|
||||
$(top_srcdir)/mkinstalldirs $(bindir)
|
||||
- -if [ -f $(bindir)/zsh ]; then mv $(bindir)/zsh $(bindir)/zsh.old; fi
|
||||
+ -if [ -f $(bindir)/zsh ]; then mv -f $(bindir)/zsh $(bindir)/zsh.old; fi
|
||||
$(INSTALL_PROGRAM) zsh $(bindir)/zsh
|
||||
-if [ -f $(bindir)/zsh-$(VERSION) ]; then rm -f $(bindir)/zsh-$(VERSION); fi
|
||||
ln $(bindir)/zsh $(bindir)/zsh-$(VERSION)
|
10
shells/zsh/stable/pkg/DESCR-modules
Normal file
10
shells/zsh/stable/pkg/DESCR-modules
Normal file
@ -0,0 +1,10 @@
|
||||
Zsh is a UNIX command interpreter (shell) which of the standard shells
|
||||
most resembles the Korn shell (ksh), although it is not completely
|
||||
compatible. It includes enhancements of many types, notably in the
|
||||
command-line editor, options for customizing its behaviour, filename
|
||||
globbing, features to make C-shell (csh) users feel more at home and
|
||||
extra features drawn from tcsh (another `custom' shell).
|
||||
|
||||
This package adds dynamically loadable modules to zsh.
|
||||
|
||||
WWW: ${HOMEPAGE}
|
10
shells/zsh/stable/pkg/DESCR-zftp
Normal file
10
shells/zsh/stable/pkg/DESCR-zftp
Normal file
@ -0,0 +1,10 @@
|
||||
Zsh is a UNIX command interpreter (shell) which of the standard shells
|
||||
most resembles the Korn shell (ksh), although it is not completely
|
||||
compatible. It includes enhancements of many types, notably in the
|
||||
command-line editor, options for customising its behaviour, filename
|
||||
globbing, features to make C-shell (csh) users feel more at home and
|
||||
extra features drawn from tcsh (another `custom' shell).
|
||||
|
||||
This package adds the zftp module to zsh.
|
||||
|
||||
WWW: ${HOMEPAGE}
|
23
shells/zsh/stable/pkg/PFRAG.shared-modules
Normal file
23
shells/zsh/stable/pkg/PFRAG.shared-modules
Normal file
@ -0,0 +1,23 @@
|
||||
@comment $OpenBSD: PFRAG.shared-modules,v 1.1 2001/06/03 01:01:38 lebel Exp $
|
||||
lib/zsh/${VERSION}/zsh/cap.so
|
||||
lib/zsh/${VERSION}/zsh/clone.so
|
||||
lib/zsh/${VERSION}/zsh/compctl.so
|
||||
lib/zsh/${VERSION}/zsh/complete.so
|
||||
lib/zsh/${VERSION}/zsh/complist.so
|
||||
lib/zsh/${VERSION}/zsh/computil.so
|
||||
lib/zsh/${VERSION}/zsh/deltochar.so
|
||||
lib/zsh/${VERSION}/zsh/example.so
|
||||
lib/zsh/${VERSION}/zsh/files.so
|
||||
lib/zsh/${VERSION}/zsh/mapfile.so
|
||||
lib/zsh/${VERSION}/zsh/mathfunc.so
|
||||
lib/zsh/${VERSION}/zsh/parameter.so
|
||||
lib/zsh/${VERSION}/zsh/rlimits.so
|
||||
lib/zsh/${VERSION}/zsh/sched.so
|
||||
lib/zsh/${VERSION}/zsh/stat.so
|
||||
lib/zsh/${VERSION}/zsh/termcap.so
|
||||
lib/zsh/${VERSION}/zsh/terminfo.so
|
||||
lib/zsh/${VERSION}/zsh/zle.so
|
||||
lib/zsh/${VERSION}/zsh/zleparameter.so
|
||||
lib/zsh/${VERSION}/zsh/zprof.so
|
||||
lib/zsh/${VERSION}/zsh/zpty.so
|
||||
lib/zsh/${VERSION}/zsh/zutil.so
|
2
shells/zsh/stable/pkg/PFRAG.shared-zftp
Normal file
2
shells/zsh/stable/pkg/PFRAG.shared-zftp
Normal file
@ -0,0 +1,2 @@
|
||||
@comment $OpenBSD: PFRAG.shared-zftp,v 1.1 2001/06/03 01:01:39 lebel Exp $
|
||||
lib/zsh/${VERSION}/zsh/zftp.so
|
@ -1,15 +1,364 @@
|
||||
@comment $OpenBSD: PLIST,v 1.1 2001/05/10 19:42:35 lebel Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.2 2001/06/03 01:01:39 lebel Exp $
|
||||
bin/zsh
|
||||
bin/zsh-${VERSION}
|
||||
@unexec install-info --delete %D/info/zsh.info %D/info/dir
|
||||
@unexec install-info --delete --info-dir=%D/info %D/info/zsh.info
|
||||
info/zsh.info
|
||||
@exec install-info %D/info/zsh.info %D/info/dir
|
||||
@exec install-info --info-dir=%D/info %D/info/zsh.info
|
||||
man/man1/zsh.1
|
||||
man/man1/zshall.1
|
||||
man/man1/zshbuiltins.1
|
||||
man/man1/zshcompctl.1
|
||||
man/man1/zshcompsys.1
|
||||
man/man1/zshcompwid.1
|
||||
man/man1/zshcontrib.1
|
||||
man/man1/zshexpn.1
|
||||
man/man1/zshmisc.1
|
||||
man/man1/zshoptions.1
|
||||
man/man1/zshall.1
|
||||
man/man1/zshzle.1
|
||||
man/man1/zsh.1
|
||||
man/man1/zshbuiltins.1
|
||||
man/man1/zshparam.1
|
||||
man/man1/zshzle.1
|
||||
share/zsh/${VERSION}/functions/_a2ps
|
||||
share/zsh/${VERSION}/functions/_alias
|
||||
share/zsh/${VERSION}/functions/_aliases
|
||||
share/zsh/${VERSION}/functions/_all_labels
|
||||
share/zsh/${VERSION}/functions/_all_matches
|
||||
share/zsh/${VERSION}/functions/_alternative
|
||||
share/zsh/${VERSION}/functions/_apachectl
|
||||
share/zsh/${VERSION}/functions/_apm
|
||||
share/zsh/${VERSION}/functions/_approximate
|
||||
share/zsh/${VERSION}/functions/_apt
|
||||
share/zsh/${VERSION}/functions/_archie
|
||||
share/zsh/${VERSION}/functions/_arg_compile
|
||||
share/zsh/${VERSION}/functions/_arguments
|
||||
share/zsh/${VERSION}/functions/_arp
|
||||
share/zsh/${VERSION}/functions/_arrays
|
||||
share/zsh/${VERSION}/functions/_autoload
|
||||
share/zsh/${VERSION}/functions/_bash_completions
|
||||
share/zsh/${VERSION}/functions/_bindkey
|
||||
share/zsh/${VERSION}/functions/_bison
|
||||
share/zsh/${VERSION}/functions/_brace_parameter
|
||||
share/zsh/${VERSION}/functions/_bsd_pkg
|
||||
share/zsh/${VERSION}/functions/_bug
|
||||
share/zsh/${VERSION}/functions/_builtin
|
||||
share/zsh/${VERSION}/functions/_bzip2
|
||||
share/zsh/${VERSION}/functions/_cache_invalid
|
||||
share/zsh/${VERSION}/functions/_call_function
|
||||
share/zsh/${VERSION}/functions/_call_program
|
||||
share/zsh/${VERSION}/functions/_cd
|
||||
share/zsh/${VERSION}/functions/_chown
|
||||
share/zsh/${VERSION}/functions/_combination
|
||||
share/zsh/${VERSION}/functions/_command
|
||||
share/zsh/${VERSION}/functions/_command_names
|
||||
share/zsh/${VERSION}/functions/_compdef
|
||||
share/zsh/${VERSION}/functions/_complete
|
||||
share/zsh/${VERSION}/functions/_complete_debug
|
||||
share/zsh/${VERSION}/functions/_complete_help
|
||||
share/zsh/${VERSION}/functions/_complete_tag
|
||||
share/zsh/${VERSION}/functions/_compress
|
||||
share/zsh/${VERSION}/functions/_condition
|
||||
share/zsh/${VERSION}/functions/_configure
|
||||
share/zsh/${VERSION}/functions/_contexts
|
||||
share/zsh/${VERSION}/functions/_correct
|
||||
share/zsh/${VERSION}/functions/_correct_filename
|
||||
share/zsh/${VERSION}/functions/_correct_word
|
||||
share/zsh/${VERSION}/functions/_cpio
|
||||
share/zsh/${VERSION}/functions/_cvs
|
||||
share/zsh/${VERSION}/functions/_cvsup
|
||||
share/zsh/${VERSION}/functions/_dd
|
||||
share/zsh/${VERSION}/functions/_deb_packages
|
||||
share/zsh/${VERSION}/functions/_default
|
||||
share/zsh/${VERSION}/functions/_describe
|
||||
share/zsh/${VERSION}/functions/_description
|
||||
share/zsh/${VERSION}/functions/_dict
|
||||
share/zsh/${VERSION}/functions/_dict_words
|
||||
share/zsh/${VERSION}/functions/_diff
|
||||
share/zsh/${VERSION}/functions/_diff_options
|
||||
share/zsh/${VERSION}/functions/_dir_list
|
||||
share/zsh/${VERSION}/functions/_directories
|
||||
share/zsh/${VERSION}/functions/_directory_stack
|
||||
share/zsh/${VERSION}/functions/_disable
|
||||
share/zsh/${VERSION}/functions/_domains
|
||||
share/zsh/${VERSION}/functions/_dpkg
|
||||
share/zsh/${VERSION}/functions/_dpkg_source
|
||||
share/zsh/${VERSION}/functions/_dupload
|
||||
share/zsh/${VERSION}/functions/_dvi
|
||||
share/zsh/${VERSION}/functions/_echotc
|
||||
share/zsh/${VERSION}/functions/_echoti
|
||||
share/zsh/${VERSION}/functions/_elm
|
||||
share/zsh/${VERSION}/functions/_emulate
|
||||
share/zsh/${VERSION}/functions/_enable
|
||||
share/zsh/${VERSION}/functions/_enscript
|
||||
share/zsh/${VERSION}/functions/_equal
|
||||
share/zsh/${VERSION}/functions/_expand
|
||||
share/zsh/${VERSION}/functions/_expand_alias
|
||||
share/zsh/${VERSION}/functions/_expand_word
|
||||
share/zsh/${VERSION}/functions/_fakeroot
|
||||
share/zsh/${VERSION}/functions/_fc
|
||||
share/zsh/${VERSION}/functions/_fetchmail
|
||||
share/zsh/${VERSION}/functions/_file_descriptors
|
||||
share/zsh/${VERSION}/functions/_files
|
||||
share/zsh/${VERSION}/functions/_find
|
||||
share/zsh/${VERSION}/functions/_finger
|
||||
share/zsh/${VERSION}/functions/_first
|
||||
share/zsh/${VERSION}/functions/_flex
|
||||
share/zsh/${VERSION}/functions/_floppy
|
||||
share/zsh/${VERSION}/functions/_functions
|
||||
share/zsh/${VERSION}/functions/_gcc
|
||||
share/zsh/${VERSION}/functions/_gdb
|
||||
share/zsh/${VERSION}/functions/_generic
|
||||
share/zsh/${VERSION}/functions/_getconf
|
||||
share/zsh/${VERSION}/functions/_gnu_generic
|
||||
share/zsh/${VERSION}/functions/_gprof
|
||||
share/zsh/${VERSION}/functions/_grep
|
||||
share/zsh/${VERSION}/functions/_groups
|
||||
share/zsh/${VERSION}/functions/_gs
|
||||
share/zsh/${VERSION}/functions/_guard
|
||||
share/zsh/${VERSION}/functions/_gv
|
||||
share/zsh/${VERSION}/functions/_gzip
|
||||
share/zsh/${VERSION}/functions/_hash
|
||||
share/zsh/${VERSION}/functions/_history
|
||||
share/zsh/${VERSION}/functions/_history_complete_word
|
||||
share/zsh/${VERSION}/functions/_hosts
|
||||
share/zsh/${VERSION}/functions/_iconv
|
||||
share/zsh/${VERSION}/functions/_ignored
|
||||
share/zsh/${VERSION}/functions/_imagemagick
|
||||
share/zsh/${VERSION}/functions/_in_vared
|
||||
share/zsh/${VERSION}/functions/_init_d
|
||||
share/zsh/${VERSION}/functions/_ispell
|
||||
share/zsh/${VERSION}/functions/_java
|
||||
share/zsh/${VERSION}/functions/_jobs
|
||||
share/zsh/${VERSION}/functions/_jobs_bg
|
||||
share/zsh/${VERSION}/functions/_jobs_builtin
|
||||
share/zsh/${VERSION}/functions/_jobs_fg
|
||||
share/zsh/${VERSION}/functions/_joe
|
||||
share/zsh/${VERSION}/functions/_kill
|
||||
share/zsh/${VERSION}/functions/_killall
|
||||
share/zsh/${VERSION}/functions/_kld
|
||||
share/zsh/${VERSION}/functions/_limits
|
||||
share/zsh/${VERSION}/functions/_list
|
||||
share/zsh/${VERSION}/functions/_loadkeys
|
||||
share/zsh/${VERSION}/functions/_logical_volumes
|
||||
share/zsh/${VERSION}/functions/_look
|
||||
share/zsh/${VERSION}/functions/_lp
|
||||
share/zsh/${VERSION}/functions/_ls
|
||||
share/zsh/${VERSION}/functions/_lscfg
|
||||
share/zsh/${VERSION}/functions/_lsdev
|
||||
share/zsh/${VERSION}/functions/_lslv
|
||||
share/zsh/${VERSION}/functions/_lspv
|
||||
share/zsh/${VERSION}/functions/_lsvg
|
||||
share/zsh/${VERSION}/functions/_lynx
|
||||
share/zsh/${VERSION}/functions/_lzop
|
||||
share/zsh/${VERSION}/functions/_mail
|
||||
share/zsh/${VERSION}/functions/_mailboxes
|
||||
share/zsh/${VERSION}/functions/_main_complete
|
||||
share/zsh/${VERSION}/functions/_make
|
||||
share/zsh/${VERSION}/functions/_man
|
||||
share/zsh/${VERSION}/functions/_match
|
||||
share/zsh/${VERSION}/functions/_math
|
||||
share/zsh/${VERSION}/functions/_menu
|
||||
share/zsh/${VERSION}/functions/_mere
|
||||
share/zsh/${VERSION}/functions/_message
|
||||
share/zsh/${VERSION}/functions/_mh
|
||||
share/zsh/${VERSION}/functions/_modutils
|
||||
share/zsh/${VERSION}/functions/_most_recent_file
|
||||
share/zsh/${VERSION}/functions/_mount
|
||||
share/zsh/${VERSION}/functions/_multi_parts
|
||||
share/zsh/${VERSION}/functions/_mutt
|
||||
share/zsh/${VERSION}/functions/_my_accounts
|
||||
share/zsh/${VERSION}/functions/_mysql_utils
|
||||
share/zsh/${VERSION}/functions/_ncftp
|
||||
share/zsh/${VERSION}/functions/_nedit
|
||||
share/zsh/${VERSION}/functions/_netscape
|
||||
share/zsh/${VERSION}/functions/_newsgroups
|
||||
share/zsh/${VERSION}/functions/_next_label
|
||||
share/zsh/${VERSION}/functions/_next_tags
|
||||
share/zsh/${VERSION}/functions/_normal
|
||||
share/zsh/${VERSION}/functions/_nothing
|
||||
share/zsh/${VERSION}/functions/_nslookup
|
||||
share/zsh/${VERSION}/functions/_object_classes
|
||||
share/zsh/${VERSION}/functions/_oldlist
|
||||
share/zsh/${VERSION}/functions/_options
|
||||
share/zsh/${VERSION}/functions/_options_set
|
||||
share/zsh/${VERSION}/functions/_options_unset
|
||||
share/zsh/${VERSION}/functions/_other_accounts
|
||||
share/zsh/${VERSION}/functions/_pack
|
||||
share/zsh/${VERSION}/functions/_parameter
|
||||
share/zsh/${VERSION}/functions/_parameters
|
||||
share/zsh/${VERSION}/functions/_patch
|
||||
share/zsh/${VERSION}/functions/_path_files
|
||||
share/zsh/${VERSION}/functions/_pbm
|
||||
share/zsh/${VERSION}/functions/_pdf
|
||||
share/zsh/${VERSION}/functions/_perl
|
||||
share/zsh/${VERSION}/functions/_perl_basepods
|
||||
share/zsh/${VERSION}/functions/_perl_builtin_funcs
|
||||
share/zsh/${VERSION}/functions/_perl_modules
|
||||
share/zsh/${VERSION}/functions/_perldoc
|
||||
share/zsh/${VERSION}/functions/_physical_volumes
|
||||
share/zsh/${VERSION}/functions/_pids
|
||||
share/zsh/${VERSION}/functions/_pine
|
||||
share/zsh/${VERSION}/functions/_ports
|
||||
share/zsh/${VERSION}/functions/_prcs
|
||||
share/zsh/${VERSION}/functions/_precommand
|
||||
share/zsh/${VERSION}/functions/_prefix
|
||||
share/zsh/${VERSION}/functions/_print
|
||||
share/zsh/${VERSION}/functions/_printers
|
||||
share/zsh/${VERSION}/functions/_prompt
|
||||
share/zsh/${VERSION}/functions/_ps
|
||||
share/zsh/${VERSION}/functions/_pspdf
|
||||
share/zsh/${VERSION}/functions/_psutils
|
||||
share/zsh/${VERSION}/functions/_rcs
|
||||
share/zsh/${VERSION}/functions/_read
|
||||
share/zsh/${VERSION}/functions/_read_comp
|
||||
share/zsh/${VERSION}/functions/_redirect
|
||||
share/zsh/${VERSION}/functions/_regex_arguments
|
||||
share/zsh/${VERSION}/functions/_requested
|
||||
share/zsh/${VERSION}/functions/_retrieve_cache
|
||||
share/zsh/${VERSION}/functions/_rlogin
|
||||
share/zsh/${VERSION}/functions/_rpm
|
||||
share/zsh/${VERSION}/functions/_ruby
|
||||
share/zsh/${VERSION}/functions/_sched
|
||||
share/zsh/${VERSION}/functions/_sep_parts
|
||||
share/zsh/${VERSION}/functions/_set
|
||||
share/zsh/${VERSION}/functions/_setopt
|
||||
share/zsh/${VERSION}/functions/_setup
|
||||
share/zsh/${VERSION}/functions/_sh
|
||||
share/zsh/${VERSION}/functions/_signals
|
||||
share/zsh/${VERSION}/functions/_slrn
|
||||
share/zsh/${VERSION}/functions/_smit
|
||||
share/zsh/${VERSION}/functions/_socket
|
||||
share/zsh/${VERSION}/functions/_source
|
||||
share/zsh/${VERSION}/functions/_ssh
|
||||
share/zsh/${VERSION}/functions/_stat
|
||||
share/zsh/${VERSION}/functions/_store_cache
|
||||
share/zsh/${VERSION}/functions/_strip
|
||||
share/zsh/${VERSION}/functions/_stty
|
||||
share/zsh/${VERSION}/functions/_su
|
||||
share/zsh/${VERSION}/functions/_sub_commands
|
||||
share/zsh/${VERSION}/functions/_subscript
|
||||
share/zsh/${VERSION}/functions/_sudo
|
||||
share/zsh/${VERSION}/functions/_tags
|
||||
share/zsh/${VERSION}/functions/_tar
|
||||
share/zsh/${VERSION}/functions/_tar_archive
|
||||
share/zsh/${VERSION}/functions/_telnet
|
||||
share/zsh/${VERSION}/functions/_tex
|
||||
share/zsh/${VERSION}/functions/_texi
|
||||
share/zsh/${VERSION}/functions/_tiff
|
||||
share/zsh/${VERSION}/functions/_tilde
|
||||
share/zsh/${VERSION}/functions/_tilde_files
|
||||
share/zsh/${VERSION}/functions/_tin
|
||||
share/zsh/${VERSION}/functions/_trap
|
||||
share/zsh/${VERSION}/functions/_ttyctl
|
||||
share/zsh/${VERSION}/functions/_typeset
|
||||
share/zsh/${VERSION}/functions/_ulimit
|
||||
share/zsh/${VERSION}/functions/_unhash
|
||||
share/zsh/${VERSION}/functions/_unsetopt
|
||||
share/zsh/${VERSION}/functions/_update-alternatives
|
||||
share/zsh/${VERSION}/functions/_urls
|
||||
share/zsh/${VERSION}/functions/_user_at_host
|
||||
share/zsh/${VERSION}/functions/_users
|
||||
share/zsh/${VERSION}/functions/_users_on
|
||||
share/zsh/${VERSION}/functions/_value
|
||||
share/zsh/${VERSION}/functions/_values
|
||||
share/zsh/${VERSION}/functions/_vared
|
||||
share/zsh/${VERSION}/functions/_vars
|
||||
share/zsh/${VERSION}/functions/_vnc
|
||||
share/zsh/${VERSION}/functions/_volume_groups
|
||||
share/zsh/${VERSION}/functions/_w3m
|
||||
share/zsh/${VERSION}/functions/_wait
|
||||
share/zsh/${VERSION}/functions/_wanted
|
||||
share/zsh/${VERSION}/functions/_webbrowser
|
||||
share/zsh/${VERSION}/functions/_wget
|
||||
share/zsh/${VERSION}/functions/_whereis
|
||||
share/zsh/${VERSION}/functions/_which
|
||||
share/zsh/${VERSION}/functions/_whois
|
||||
share/zsh/${VERSION}/functions/_x_arguments
|
||||
share/zsh/${VERSION}/functions/_x_borderwidth
|
||||
share/zsh/${VERSION}/functions/_x_color
|
||||
share/zsh/${VERSION}/functions/_x_colormapid
|
||||
share/zsh/${VERSION}/functions/_x_cursor
|
||||
share/zsh/${VERSION}/functions/_x_display
|
||||
share/zsh/${VERSION}/functions/_x_extension
|
||||
share/zsh/${VERSION}/functions/_x_font
|
||||
share/zsh/${VERSION}/functions/_x_geometry
|
||||
share/zsh/${VERSION}/functions/_x_keysym
|
||||
share/zsh/${VERSION}/functions/_x_locale
|
||||
share/zsh/${VERSION}/functions/_x_modifier
|
||||
share/zsh/${VERSION}/functions/_x_name
|
||||
share/zsh/${VERSION}/functions/_x_resource
|
||||
share/zsh/${VERSION}/functions/_x_selection_timeout
|
||||
share/zsh/${VERSION}/functions/_x_title
|
||||
share/zsh/${VERSION}/functions/_x_utils
|
||||
share/zsh/${VERSION}/functions/_x_window
|
||||
share/zsh/${VERSION}/functions/_xargs
|
||||
share/zsh/${VERSION}/functions/_xauth
|
||||
share/zsh/${VERSION}/functions/_xdvi
|
||||
share/zsh/${VERSION}/functions/_xfig
|
||||
share/zsh/${VERSION}/functions/_xmodmap
|
||||
share/zsh/${VERSION}/functions/_xrdb
|
||||
share/zsh/${VERSION}/functions/_xset
|
||||
share/zsh/${VERSION}/functions/_xt_arguments
|
||||
share/zsh/${VERSION}/functions/_xt_session_id
|
||||
share/zsh/${VERSION}/functions/_xterm
|
||||
share/zsh/${VERSION}/functions/_xv
|
||||
share/zsh/${VERSION}/functions/_xwit
|
||||
share/zsh/${VERSION}/functions/_yodl
|
||||
share/zsh/${VERSION}/functions/_yp
|
||||
share/zsh/${VERSION}/functions/_zcat
|
||||
share/zsh/${VERSION}/functions/_zcompile
|
||||
share/zsh/${VERSION}/functions/_zdump
|
||||
share/zsh/${VERSION}/functions/_zed
|
||||
share/zsh/${VERSION}/functions/_zftp
|
||||
share/zsh/${VERSION}/functions/_zip
|
||||
share/zsh/${VERSION}/functions/_zle
|
||||
share/zsh/${VERSION}/functions/_zmodload
|
||||
share/zsh/${VERSION}/functions/_zpty
|
||||
share/zsh/${VERSION}/functions/_zstyle
|
||||
share/zsh/${VERSION}/functions/allopt
|
||||
share/zsh/${VERSION}/functions/checkmail
|
||||
share/zsh/${VERSION}/functions/colors
|
||||
share/zsh/${VERSION}/functions/compaudit
|
||||
share/zsh/${VERSION}/functions/compdump
|
||||
share/zsh/${VERSION}/functions/compinit
|
||||
share/zsh/${VERSION}/functions/compinstall
|
||||
share/zsh/${VERSION}/functions/cycle-completion-positions
|
||||
share/zsh/${VERSION}/functions/edit-command-line
|
||||
share/zsh/${VERSION}/functions/getjobs
|
||||
share/zsh/${VERSION}/functions/harden
|
||||
share/zsh/${VERSION}/functions/history-search-end
|
||||
share/zsh/${VERSION}/functions/incarg
|
||||
share/zsh/${VERSION}/functions/incremental-complete-word
|
||||
share/zsh/${VERSION}/functions/insert-files
|
||||
share/zsh/${VERSION}/functions/is-at-least
|
||||
share/zsh/${VERSION}/functions/mere
|
||||
share/zsh/${VERSION}/functions/nslookup
|
||||
share/zsh/${VERSION}/functions/predict-on
|
||||
share/zsh/${VERSION}/functions/prompt_adam1_setup
|
||||
share/zsh/${VERSION}/functions/prompt_adam2_setup
|
||||
share/zsh/${VERSION}/functions/prompt_bart_setup
|
||||
share/zsh/${VERSION}/functions/prompt_bigfade_setup
|
||||
share/zsh/${VERSION}/functions/prompt_clint_setup
|
||||
share/zsh/${VERSION}/functions/prompt_elite2_setup
|
||||
share/zsh/${VERSION}/functions/prompt_elite_setup
|
||||
share/zsh/${VERSION}/functions/prompt_fade_setup
|
||||
share/zsh/${VERSION}/functions/prompt_fire_setup
|
||||
share/zsh/${VERSION}/functions/prompt_off_setup
|
||||
share/zsh/${VERSION}/functions/prompt_oliver_setup
|
||||
share/zsh/${VERSION}/functions/prompt_redhat_setup
|
||||
share/zsh/${VERSION}/functions/prompt_suse_setup
|
||||
share/zsh/${VERSION}/functions/prompt_zefram_setup
|
||||
share/zsh/${VERSION}/functions/promptinit
|
||||
share/zsh/${VERSION}/functions/promptnl
|
||||
share/zsh/${VERSION}/functions/run-help
|
||||
share/zsh/${VERSION}/functions/smart-insert-last-word
|
||||
share/zsh/${VERSION}/functions/zed
|
||||
share/zsh/${VERSION}/functions/zkbd
|
||||
share/zsh/${VERSION}/functions/zmv
|
||||
share/zsh/${VERSION}/functions/zrecompile
|
||||
share/zsh/${VERSION}/functions/zstyle+
|
||||
@exec mkdir -p %D/share/zsh/site-functions
|
||||
@dirrm share/zsh/site-functions
|
||||
@dirrm share/zsh/${VERSION}/functions
|
||||
@dirrm share/zsh/${VERSION}
|
||||
@dirrm share/zsh
|
||||
@dirrm lib/zsh/${VERSION}/zsh
|
||||
@dirrm lib/zsh/${VERSION}
|
||||
@dirrm lib/zsh
|
||||
|
4
shells/zsh/stable/pkg/PLIST-modules
Normal file
4
shells/zsh/stable/pkg/PLIST-modules
Normal file
@ -0,0 +1,4 @@
|
||||
@comment $OpenBSD: PLIST-modules,v 1.1 2001/06/03 01:01:39 lebel Exp $
|
||||
@pkgdep zsh-${VERSION}
|
||||
%%SHARED%%
|
||||
man/man1/zshmodules.1
|
37
shells/zsh/stable/pkg/PLIST-zftp
Normal file
37
shells/zsh/stable/pkg/PLIST-zftp
Normal file
@ -0,0 +1,37 @@
|
||||
@comment $OpenBSD: PLIST-zftp,v 1.1 2001/06/03 01:01:39 lebel Exp $
|
||||
@comment $OpenBSD: PLIST-zftp,v 1.1 2001/06/03 01:01:39 lebel Exp $
|
||||
@pkgdep zsh-${VERSION}
|
||||
@pkgdep zsh-modules-${VERSION}
|
||||
%%SHARED%%
|
||||
man/man1/zshzftpsys.1
|
||||
share/zsh/${VERSION}/functions/zfanon
|
||||
share/zsh/${VERSION}/functions/zfautocheck
|
||||
share/zsh/${VERSION}/functions/zfcd
|
||||
share/zsh/${VERSION}/functions/zfcd_match
|
||||
share/zsh/${VERSION}/functions/zfcget
|
||||
share/zsh/${VERSION}/functions/zfclose
|
||||
share/zsh/${VERSION}/functions/zfcput
|
||||
share/zsh/${VERSION}/functions/zfdir
|
||||
share/zsh/${VERSION}/functions/zffcache
|
||||
share/zsh/${VERSION}/functions/zfgcp
|
||||
share/zsh/${VERSION}/functions/zfget
|
||||
share/zsh/${VERSION}/functions/zfget_match
|
||||
share/zsh/${VERSION}/functions/zfgoto
|
||||
share/zsh/${VERSION}/functions/zfhere
|
||||
share/zsh/${VERSION}/functions/zfinit
|
||||
share/zsh/${VERSION}/functions/zfls
|
||||
share/zsh/${VERSION}/functions/zfmark
|
||||
share/zsh/${VERSION}/functions/zfopen
|
||||
share/zsh/${VERSION}/functions/zfparams
|
||||
share/zsh/${VERSION}/functions/zfpcp
|
||||
share/zsh/${VERSION}/functions/zfput
|
||||
share/zsh/${VERSION}/functions/zfrglob
|
||||
share/zsh/${VERSION}/functions/zfrtime
|
||||
share/zsh/${VERSION}/functions/zfsession
|
||||
share/zsh/${VERSION}/functions/zfstat
|
||||
share/zsh/${VERSION}/functions/zftp_chpwd
|
||||
share/zsh/${VERSION}/functions/zftp_progress
|
||||
share/zsh/${VERSION}/functions/zftransfer
|
||||
share/zsh/${VERSION}/functions/zftype
|
||||
share/zsh/${VERSION}/functions/zfuget
|
||||
share/zsh/${VERSION}/functions/zfuput
|
Loading…
x
Reference in New Issue
Block a user