Verifique se o pacote command-not-found
está instalado (deve ser por padrão). Em seguida, abra o arquivo .zshrc
em seu editor de texto favorito e anexe esta linha na parte inferior:
source /etc/zsh_command_not_found
Em seguida, execute
source .zshrc
no seu terminal. Agora, quando você tenta executar um programa que não está instalado:
➜ ~ man2html
The program 'man2html' is currently not installed. You can install it by typing:
sudo apt-get install man2html-base
zsh: command not found: man2html
➜ ~