The Shopt Builtin (Bash Reference Manual)
https://www.gnu.org/software/bash/manual/html_node/The-Shopt-Builtin.html
If this is set, an argument to the cd builtin command that is not a directory is assumed to be the name of a variable whose value is the directory to change to. cdspell.
Hack 6. Use "shopt -s cdspell" to automatically correct mistyped...
https://linux.101hacks.com/cd-command/shopt-s-cdspell/
Use shopt -s cdspell to correct the typos in the cd command automatically as shown below. If you are not good at typing and make lot of mistakes...
bash - What does shopt -s dirspell do? - Stack Overflow
https://stackoverflow.com/questions/6438341/what-does-shopt-s-dirspell-do
I cannot figure it out, i understand shopt -s cdspell but cannot find out what shopt -s dirspell does. The Bash Reference Guide says
Bash shopt builtin command help and examples | cdspell
https://www.computerhope.com/unix/bash/shopt.htm
cdspell. If set, minor errors in the spelling of a directory component in a cd command are corrected. The errors checked for are transposed characters, a missing character, and one character too many.
shopt -s cdspell
https://www.linuxnix.com/change-shell-properties-with-linux-shopt-command/
autocd off cdable_vars off cdspell off checkhash off checkjobs off checkwinsize on cmdhist on compat31 off compat32 off compat40 Enable cdspell option with shopt command as shown below.
Linux Hack 6 - Use "shopt -s cdspell" to automatically correct mistyped...
https://www.youtube.com/watch?v=Ny13M4fSyew
Use "shopt -s cdspell" to automatically correct mistyped directory names on cd.
How to Customize a Bash Shell with the shopt Command | DevsDay.ru
https://devsday.ru/blog/details/32981
Enabling the "cdspell" Option with the shopt Command. The "cdspell" option automatically corrects any spelling mistakes in the command.
cdspell
https://www.thegeekstuff.com/tag/cdspell/
cdspell. 6 Awesome Linux cd command Hacks - Productivity Tip#3 for Geeks. by Ramesh Natarajan on October 9, 2008.
Setting shell options - Linux Shell Scripting Tutorial...
https://bash.cyberciti.biz/guide/Setting_shell_options
If cdspell option set, minor errors in the spelling of a directory name in a cd command will be corrected. The errors checked for are transposed characters, a missing character, and one character too many.
shopt Man Page - Linux - SS64.com
https://ss64.com/bash/shopt.html
cdspell If set, minor errors in the spelling of a directory component in a cd command will be Turn on spell checker for directory names in the cd builtin: $ shopt -s cdspell. "The dogma of the ghost in the...
Using bash's shopt builtin to manage Linux shell behavior
https://www.networkworld.com/article/3574960/using-bashs-shopt-builtin-to-manage-linux-shell-behavior.html
Once cdspell is enabled, if some directory name is misspelled, bash will display the correct spelling and then run the corrected cd command. As you can see below, pwd confirms that the cd command was...
bash - Set and Shopt - Why Two? - Unix & Linux Stack Exchange
https://unix.stackexchange.com/questions/32409/set-and-shopt-why-two
$ shopt autocd off cdable_vars off cdspell off checkhash off checkjobs off checkwinsize off cmdhist on compat31 off compat32 off compat40 off compat41 off compat42 off complete_fullquote on direxpand...
Shopt for Bash - Cdspell for cd dir change mistypes | Debmintux
https://debmintux.wordpress.com/2011/02/22/shopt-for-bash-cdspell-for-cd-dir-change-mistypes/
The cdspell bash builtin: As you can see below, apart from the autoset options, I have manually set cdspell. If you spend a lot of time navigating directories via the terminal, you will often make spelling...
shopt -s cdspell | InformIT
https://www.informit.com/articles/article.aspx?p=441605&seqNum=8
cdspell. Corrects minor spelling errors in directory names used as arguments to cd. shopt -s cdspell. cmdhist. Saves all lines of a multiline command in the same history entry, adding semicolons...
Настройка строки приглашения bash - NaHOSTE.Ru
https://nahoste.ru/linux/nastrojka-stroki-priglasheniya-bash/
shopt -s cdspell. export HISTCONTROL="ignoredups".
Useful BASH shopts that aren't defaulted on · GitHub
https://gist.github.com/dirkharrington/1f11e0df70428755c9fa
shopt -s cdspell.