mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-15 09:48:43 +00:00
Update cheatsheets
This commit is contained in:
23
tldr/unsetopt
Normal file
23
tldr/unsetopt
Normal file
@@ -0,0 +1,23 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# unsetopt
|
||||
|
||||
> Unset options for the Z shell (`zsh`).
|
||||
> Note: Zsh options are case-insensitive and underscores are ignored.
|
||||
> See also: `setopt` to set options.
|
||||
> More information: <https://zsh.sourceforge.io/Doc/Release/Options.html>.
|
||||
|
||||
- List all currently unset options (use `setopt` to list set options):
|
||||
|
||||
`unsetopt`
|
||||
|
||||
- Unset a specific option:
|
||||
|
||||
`unsetopt {{option_name}}`
|
||||
|
||||
- Unset multiple options at once:
|
||||
|
||||
`unsetopt {{option_name1 option_name2 ...}}`
|
||||
Reference in New Issue
Block a user