#shell #command #typo #correction #zsh #found #not-found

app suggest-command-not-found

Typo correction for not-found shell commands

8 releases

0.1.7 May 12, 2023
0.1.6 Apr 26, 2023

#1 in #typo

Download history 3/week @ 2024-02-23 1/week @ 2024-03-01 8/week @ 2024-03-08 4/week @ 2024-03-15 69/week @ 2024-03-29

81 downloads per month

MIT license

5KB
58 lines

suggest-command-not-found crates.io version crates.io downloads

Typo correction for not-found shell commands

ScreenShot

Usage

  1. Install suggest-command-not-found
    $ cargo install suggest-command-not-found
    
  2. Add command_not_found_handler to your ~/.zshrc
    command_not_found_handler() {
      if command -v suggest-command-not-found &> /dev/null; then
        exec suggest-command-not-found $@
      else
        echo "zsh: command not found: $@"
      fi
    }
    
    Or update your ~/.bash_profile if you are using Bash:
    command_not_found_handle() {
      if command -v suggest-command-not-found &> /dev/null; then
        exec suggest-command-not-found $@
      else
        echo "bash: command not found: $@"
      fi
    }
    
  3. Make a typo
    $ carog new mypj
    Error: command not found: "carog" new mypj
       ==> Did you mean "cargo"?
    
    $ notacommand
    Error: command not found: "notacommand"
    
    $ echo $?
    127
    

Dependencies

~0.1–9.5MB
~56K SLoC