notes/os/shells/zsh/zsh-options.txt
Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

21 строка
417 B
Plaintext

man zshoptions
set -o
show which options are on/off
setopt
show options (??? with non-default settings)
setopt <option>:
ignore_eof
ignore EOF (while C-D) up to 10 times
nobeep
disable beep
extended_glob
more powerfull pattern matching features.
hist_ho_store
disable history storing
noclobber
stop clobbering (overwrite files while redirecting output)
(we can redirect anyway via echo ... >| logfile.txt)