Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: zsh-htmldoc | Distribution: openSUSE Tumbleweed |
Version: 5.9 | Vendor: openSUSE |
Release: 9.1 | Build date: Mon Jul 15 16:02:19 2024 |
Group: Documentation/HTML | Build host: reproducible |
Size: 3557401 | Source RPM: zsh-5.9-9.1.src.rpm |
Packager: http://bugs.opensuse.org | |
Url: https://www.zsh.org | |
Summary: Zsh shell manual in HTML format |
The zsh shell is a command interpreter usable as an interactive login shell and as a shell script command processor. Zsh resembles the ksh shell (the Korn shell), but includes many enhancements. Zsh supports command line editing, built-in spelling correction, programmable command completion, shell functions (with autoloading), a history mechanism, and more. This package contains the Zsh manual in HTML format.
MIT
* Mon Jul 15 2024 Martin Jambor <mjambor@suse.com> - Backport zsh-ab4d62eb975a4c4c51dd35822665050e2ddc6918.patch and zsh-4c89849c98172c951a9def3690e8647dae76308f.patch and add autoconf to build requirements to make the package build with GCC 14. [boo#1225958] * Tue Feb 20 2024 Dominique Leuenberger <dimstar@opensuse.org> - Use %patch -P N instead of deprecated %patchN. * Thu Nov 30 2023 Paolo Perego <paolo.perego@suse.com> - add pipe-less-and-signals-handling.patch (bsc#1217304). It fixes a problem with signal handling and less when the job is suspended in a user defined concatenated commands function. * Thu Aug 03 2023 Andreas Schwab <schwab@suse.de> - Enable testsuite in qemu build * Tue Feb 28 2023 Paolo Perego <paolo.perego@suse.com> - Disabled zsh-sh subpackage generation for Leap 15.4 to prevent an error when building the package. * Tue Feb 28 2023 pgajdos@suse.com - don't require yodl for build, doc is not regenerated anyway * Tue Dec 27 2022 Ludwig Nussel <lnussel@suse.com> - Replace transitional %usrmerged macro with regular version check (boo#1206798) * Sat Oct 22 2022 Luciano Santos <luc14n0@opensuse.org> - Add zsh-sh subpackage to offer Zsh users a "native" way to handle /bin/sh scripts and use an SH shell with the capabilities of Zsh itself to emulate a Bourne shell. An 'sh' symlink pointing to the Zsh binary is all that is needed for it to emulate the Bourne shell, it is similar to the use of `emulate sh` Zsh's built-in command or the `zsh --emulate sh` shell command. - Drop deprecated use of install_info(_delete) post(un) macros. RPM file triggers have replaced their functionality since 2019. * Mon Sep 12 2022 Dirk Müller <dmueller@suse.com> - add egrep-deprecation.patch (bsc#1203241) * Sun May 15 2022 Dirk Müller <dmueller@suse.com> - update to 5.9: zsh 5.9 is dedicated to the memory of Sven Guckes, who was, amongst other things, a long-time zsh advocate. For more information, see: https://linuxnews.de/2022/02/sven-guckes-verstorben/ https://groups.google.com/g/vim_announce/c/MJBKVd-xrEE/m/joVNaDgAAgAJ When unsetting a hash element, the string enclosed in square brackets is interpreted literally after any normal command-line-argument expansions. Thus unset "hash[$key]" first expands $key as usual for a double-quoted string, and then interprets that result as the exact hash element to unset. This differs from previous versions of the shell, which would also remove a leading backslash for an unusual subset of characters in the expansion of $key. Note this also means, for example, that now unset 'hash[ab]cd]' unsets the element with key "ab]cd" rather than silently doing nothing. The function command learnt a -T option to declare a function and enable tracing for it simultaneously. The option SHORT_REPEAT was added to enable the short syntax of SHORT_LOOPS for the repeat command only. It is disabled by default. The _arguments function now supports NUL-delimiting optargs in the opt_args array via the -0 option. Developers of completion functions should find this easier to handle reliably than the default colon-delimiting behaviour. The zsh/system module's `zsystem flock` command learnt an -i option to set the wait interval used with -t. Additionally, -t now supports fractional seconds. The option CLOBBER_EMPTY was added to enable the overwrite behaviour of CLOBBER for empty files only. It is disabled by default. A (-) expansion flag was added. It works like (n) but correctly sorts negative numbers. The (*) expansion flag enables EXTENDED_GLOB for pattern matching. For example, ${(*)sample/(#b)*(pat)*/${match[1]}} uses backreferences even if EXTENDED_GLOB is not otherwise set. However, this does not descend into nested exapansions, and doubling as (**) does not disable EXTENDED_GLOB. The compinit function learnt a -w option to explain why compdump runs. When run without the -i or -u options and compaudit discovers security issues, answering "y" to the "Ignore insecure ..." prompt removes the insecure elements (like the -i option) where previously it ignored the result (thus formerly like the -u option). Further, removing those elements includes dropping directories from the $fpath array. The zsh/datetime module's strftime builtin learnt an -n option to omit the trailing newline when printing a formatted time. The XTRACE option is now disabled while running user-defined completion widgets. This corresponds to long-standing behavior of other user ZLE widgets. Use the _complete_debug widget to capture XTRACE output, or use "functions -T" to enable tracing of specific completion functions. The fc builtin learnt an -s option which is a POSIX equivalent to the `fc -e-` method of re-executing a command without invoking an editor. The option CASE_PATHS was added to control how NO_CASE_GLOB behaves. NO_CASE_GLOB + NO_CASE_PATHS is equivalent to the current NO_CASE_GLOB behaviour. NO_CASE_GLOB + CASE_PATHS treats only path components that contain globbing characters as case-insensitive; this behaviour may yield more predictable results on case-sensitive file systems. NO_CASE_PATHS is the default. With the new TYPESET_TO_UNSET option set, "typeset foo" leaves foo unset, in contrast to the default behavior which assigns foo="". Any parameter attributes such as numeric type, sorting, and padding are retained until the parameter is explicitly unset or a conflicting value is assigned. This is similar to default behavior of bash and ksh. This option is disabled by default. The compadd builtin's -D option can now be specified more than once. The zsh/zutil module's zformat builtin learnt an -F option which behaves like -f except that ternary expressions check for existence instead of doing math evaluation. The conventional syntax used to indicate units, ranges, and default values in completion descriptions (e.g. `timeout (seconds) (0-60) [20]`) is now recognised by the completion system itself. These components are parsed out of the description and can be individually styled. A _numbers helper function has been added to help function authors offer rich completion for these values. The log builtin, WATCH parameter, et al., have been broken out into a separate module, zsh/watch. The module is enabled by default. The zsh/watch module's WATCHFMT parameter now supports colours via the %F and %K escapes. The STTY parameter can now be set to an empty string before running a command to automatically restore terminal settings after the command finishes. The "jobs" command and "$jobstates" and related parameters can report on parent shell jobs even in subshells. This is a snapshot of the parent state, frozen at the point the subshell started. However, if a subshell starts its own background jobs, the parent state is discarded in order to report on those new jobs. - drop ncurses-fix.patch: upstream * Sun Mar 20 2022 Dirk Müller <dmueller@suse.com> - update to 5.8.1 (bsc#1196435, CVE-2021-45444): * CVE-2021-45444: Some prompt expansion sequences, such as %F, support 'arguments' which are themselves expanded in case they contain colour values, etc. This additional expansion would trigger PROMPT_SUBST evaluation, if enabled. This could be abused to execute code the user didn't expect. e.g., given a certain prompt configuration, an attacker could trick a user into executing arbitrary code by having them check out a Git branch with a specially crafted name. This is fixed in the shell itself by no longer performing PROMPT_SUBST evaluation on these prompt-expansion arguments. Users who are concerned about an exploit but unable to update their binaries may apply the partial work-around described in the file Etc/CVE-2021-45444-VCS_Info-workaround.patch included with the shell source. [ Reported by RyotaK <security@ryotak.me>. Additional thanks to Marc Cornellà <hello@mcornella.com>. ]
/usr/share/doc/packages/zsh-htmldoc /usr/share/doc/packages/zsh-htmldoc/Aliasing.html /usr/share/doc/packages/zsh-htmldoc/Alternate-Forms-For-Complex-Commands.html /usr/share/doc/packages/zsh-htmldoc/Alternative-Completion.html /usr/share/doc/packages/zsh-htmldoc/Arguments.html /usr/share/doc/packages/zsh-htmldoc/Arithmetic-Evaluation.html /usr/share/doc/packages/zsh-htmldoc/Arithmetic-Expansion.html /usr/share/doc/packages/zsh-htmldoc/Array-Parameters.html /usr/share/doc/packages/zsh-htmldoc/Author.html /usr/share/doc/packages/zsh-htmldoc/Availability.html /usr/share/doc/packages/zsh-htmldoc/Bindable-Commands.html /usr/share/doc/packages/zsh-htmldoc/Brace-Expansion.html /usr/share/doc/packages/zsh-htmldoc/Calendar-Bugs.html /usr/share/doc/packages/zsh-htmldoc/Calendar-File-and-Date-Formats.html /usr/share/doc/packages/zsh-htmldoc/Calendar-Function-System.html /usr/share/doc/packages/zsh-htmldoc/Calendar-Styles.html /usr/share/doc/packages/zsh-htmldoc/Calendar-System-User-Functions.html /usr/share/doc/packages/zsh-htmldoc/Calendar-Utility-Functions.html /usr/share/doc/packages/zsh-htmldoc/Character-Highlighting.html /usr/share/doc/packages/zsh-htmldoc/Command-Execution.html /usr/share/doc/packages/zsh-htmldoc/Command-Flags.html /usr/share/doc/packages/zsh-htmldoc/Command-Substitution.html /usr/share/doc/packages/zsh-htmldoc/Comments.html /usr/share/doc/packages/zsh-htmldoc/Compatibility.html /usr/share/doc/packages/zsh-htmldoc/Completion-Builtin-Commands.html /usr/share/doc/packages/zsh-htmldoc/Completion-Condition-Codes.html /usr/share/doc/packages/zsh-htmldoc/Completion-Directories.html /usr/share/doc/packages/zsh-htmldoc/Completion-Functions.html /usr/share/doc/packages/zsh-htmldoc/Completion-Matching-Control.html /usr/share/doc/packages/zsh-htmldoc/Completion-Special-Parameters.html /usr/share/doc/packages/zsh-htmldoc/Completion-System-Configuration.html /usr/share/doc/packages/zsh-htmldoc/Completion-System-Variables.html /usr/share/doc/packages/zsh-htmldoc/Completion-System.html /usr/share/doc/packages/zsh-htmldoc/Completion-Using-compctl.html /usr/share/doc/packages/zsh-htmldoc/Completion-Widget-Example.html /usr/share/doc/packages/zsh-htmldoc/Completion-Widgets.html /usr/share/doc/packages/zsh-htmldoc/Completion.html /usr/share/doc/packages/zsh-htmldoc/Complex-Commands.html /usr/share/doc/packages/zsh-htmldoc/Concept-Index.html /usr/share/doc/packages/zsh-htmldoc/Conditional-Expressions.html /usr/share/doc/packages/zsh-htmldoc/Control-Flags.html /usr/share/doc/packages/zsh-htmldoc/Control-Functions.html /usr/share/doc/packages/zsh-htmldoc/Description-of-Options.html /usr/share/doc/packages/zsh-htmldoc/Dynamic-named-directories.html /usr/share/doc/packages/zsh-htmldoc/Editor-Functions-Index.html /usr/share/doc/packages/zsh-htmldoc/Errors.html /usr/share/doc/packages/zsh-htmldoc/Event-Designators.html /usr/share/doc/packages/zsh-htmldoc/Example.html /usr/share/doc/packages/zsh-htmldoc/Exception-Handling.html /usr/share/doc/packages/zsh-htmldoc/Expansion.html /usr/share/doc/packages/zsh-htmldoc/Extended-Completion.html /usr/share/doc/packages/zsh-htmldoc/Filename-Expansion.html /usr/share/doc/packages/zsh-htmldoc/Filename-Generation.html /usr/share/doc/packages/zsh-htmldoc/Files.html /usr/share/doc/packages/zsh-htmldoc/Flags-with-Arguments.html /usr/share/doc/packages/zsh-htmldoc/Functions-Index.html /usr/share/doc/packages/zsh-htmldoc/Functions.html /usr/share/doc/packages/zsh-htmldoc/History-Control.html /usr/share/doc/packages/zsh-htmldoc/History-Expansion.html /usr/share/doc/packages/zsh-htmldoc/Initialization.html /usr/share/doc/packages/zsh-htmldoc/Installation.html /usr/share/doc/packages/zsh-htmldoc/Introduction.html /usr/share/doc/packages/zsh-htmldoc/Invocation.html /usr/share/doc/packages/zsh-htmldoc/Jobs-_0026-Signals.html /usr/share/doc/packages/zsh-htmldoc/Keymaps.html /usr/share/doc/packages/zsh-htmldoc/Local-Parameters.html /usr/share/doc/packages/zsh-htmldoc/MIME-Functions.html /usr/share/doc/packages/zsh-htmldoc/Mailing-Lists.html /usr/share/doc/packages/zsh-htmldoc/Mathematical-Functions.html /usr/share/doc/packages/zsh-htmldoc/Miscellaneous-Features.html /usr/share/doc/packages/zsh-htmldoc/Miscellaneous.html /usr/share/doc/packages/zsh-htmldoc/Modifiers.html /usr/share/doc/packages/zsh-htmldoc/Modifying-Text.html /usr/share/doc/packages/zsh-htmldoc/Movement.html /usr/share/doc/packages/zsh-htmldoc/Notes.html /usr/share/doc/packages/zsh-htmldoc/Option-Aliases.html /usr/share/doc/packages/zsh-htmldoc/Option-Flags.html /usr/share/doc/packages/zsh-htmldoc/Options-Index.html /usr/share/doc/packages/zsh-htmldoc/Options.html /usr/share/doc/packages/zsh-htmldoc/Other-Directory-Functions.html /usr/share/doc/packages/zsh-htmldoc/Other-Functions.html /usr/share/doc/packages/zsh-htmldoc/Overview.html /usr/share/doc/packages/zsh-htmldoc/Parameter-Expansion.html /usr/share/doc/packages/zsh-htmldoc/Parameters-Set-By-The-Shell.html /usr/share/doc/packages/zsh-htmldoc/Parameters-Used-By-The-Shell.html /usr/share/doc/packages/zsh-htmldoc/Parameters.html /usr/share/doc/packages/zsh-htmldoc/Positional-Parameters.html /usr/share/doc/packages/zsh-htmldoc/Precommand-Modifiers.html /usr/share/doc/packages/zsh-htmldoc/Process-Substitution.html /usr/share/doc/packages/zsh-htmldoc/Prompt-Expansion.html /usr/share/doc/packages/zsh-htmldoc/Prompt-Themes.html /usr/share/doc/packages/zsh-htmldoc/Quoting.html /usr/share/doc/packages/zsh-htmldoc/Recent-Directories.html /usr/share/doc/packages/zsh-htmldoc/Redirection.html /usr/share/doc/packages/zsh-htmldoc/Reserved-Words.html /usr/share/doc/packages/zsh-htmldoc/Restricted-Shell.html /usr/share/doc/packages/zsh-htmldoc/Roadmap.html /usr/share/doc/packages/zsh-htmldoc/See-Also.html /usr/share/doc/packages/zsh-htmldoc/Shell-Builtin-Commands.html /usr/share/doc/packages/zsh-htmldoc/Shell-Grammar.html /usr/share/doc/packages/zsh-htmldoc/Simple-Commands-_0026-Pipelines.html /usr/share/doc/packages/zsh-htmldoc/Simple-Flags.html /usr/share/doc/packages/zsh-htmldoc/Single-Letter-Options.html /usr/share/doc/packages/zsh-htmldoc/Specifying-Options.html /usr/share/doc/packages/zsh-htmldoc/Standard-Widgets.html /usr/share/doc/packages/zsh-htmldoc/Static-named-directories.html /usr/share/doc/packages/zsh-htmldoc/Style-and-Tag-Index.html /usr/share/doc/packages/zsh-htmldoc/TCP-Bugs.html /usr/share/doc/packages/zsh-htmldoc/TCP-Examples.html /usr/share/doc/packages/zsh-htmldoc/TCP-Function-System.html /usr/share/doc/packages/zsh-htmldoc/TCP-Functions.html /usr/share/doc/packages/zsh-htmldoc/TCP-Parameters.html /usr/share/doc/packages/zsh-htmldoc/Text-Objects.html /usr/share/doc/packages/zsh-htmldoc/The-Z-Shell-Manual.html /usr/share/doc/packages/zsh-htmldoc/The-Zsh-FAQ.html /usr/share/doc/packages/zsh-htmldoc/The-Zsh-Userguide.html /usr/share/doc/packages/zsh-htmldoc/The-Zsh-Web-Page.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fattr-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fcap-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fclone-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fcompctl-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fcomplete-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fcomplist-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fcomputil-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fcurses-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fdatetime-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fdb_002fgdbm-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fdeltochar-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fexample-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002ffiles-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002flanginfo-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fmapfile-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fmathfunc-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fnearcolor-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fnet_002fsocket-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fnet_002ftcp-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fnewuser-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fparam_002fprivate-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fparameter-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fpcre-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fregex-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fsched-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fstat-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fsystem-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002ftermcap-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fterminfo-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fwatch-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fzftp-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fzle-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fzleparameter-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fzprof-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fzpty-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fzselect-Module.html /usr/share/doc/packages/zsh-htmldoc/The-zsh_002fzutil-Module.html /usr/share/doc/packages/zsh-htmldoc/User-Configuration-Functions.html /usr/share/doc/packages/zsh-htmldoc/User-Contributions.html /usr/share/doc/packages/zsh-htmldoc/User_002dDefined-Widgets.html /usr/share/doc/packages/zsh-htmldoc/Utilities.html /usr/share/doc/packages/zsh-htmldoc/Variables-Index.html /usr/share/doc/packages/zsh-htmldoc/Version-Control-Information.html /usr/share/doc/packages/zsh-htmldoc/Word-Designators.html /usr/share/doc/packages/zsh-htmldoc/ZLE-Functions.html /usr/share/doc/packages/zsh-htmldoc/Zftp-Function-System.html /usr/share/doc/packages/zsh-htmldoc/Zftp-Functions.html /usr/share/doc/packages/zsh-htmldoc/Zle-Builtins.html /usr/share/doc/packages/zsh-htmldoc/Zle-Widgets.html /usr/share/doc/packages/zsh-htmldoc/Zsh-Line-Editor.html /usr/share/doc/packages/zsh-htmldoc/Zsh-Modules.html /usr/share/doc/packages/zsh-htmldoc/_0060_003d_0027-expansion.html /usr/share/doc/packages/zsh-htmldoc/index.html /usr/share/doc/packages/zsh-htmldoc/vcs_005finfo-API.html /usr/share/doc/packages/zsh-htmldoc/vcs_005finfo-Configuration.html /usr/share/doc/packages/zsh-htmldoc/vcs_005finfo-Examples.html /usr/share/doc/packages/zsh-htmldoc/vcs_005finfo-Hooks.html /usr/share/doc/packages/zsh-htmldoc/vcs_005finfo-Oddities.html /usr/share/doc/packages/zsh-htmldoc/vcs_005finfo-Quickstart.html /usr/share/doc/packages/zsh-htmldoc/vcs_005finfo-Quilt-Support.html /usr/share/doc/packages/zsh-htmldoc/vcs_005finfo-Variables.html /usr/share/doc/packages/zsh-htmldoc/zsh_abt.html /usr/share/doc/packages/zsh-htmldoc/zsh_toc.html
Generated by rpm2html 1.8.1
Fabrice Bellet, Sun Oct 6 00:13:13 2024