zsh에서 명령을 찾을 수 없음


14

command-not-found우분투 의 기능을 zsh에서 운없이 작동 시키려고합니다 .

➜  ~  pdfunite
zsh: command not found: pdfunite
➜  ~  bash
u@ub:~$ pdfunite
The program 'pdfunite' is currently not installed.  You can install it by typing:
sudo apt-get install poppler-utils

zsh도 지원하는 패키지가 있는지 아는 사람이 있습니까?

감사합니다.

답변:


13

.zshrc에서 소스를 제공해야합니다.

if [[ -s '/etc/zsh_command_not_found' ]]; then
  source '/etc/zsh_command_not_found'
fi

스크립트는 command-not-found 패키지의 일부입니다 .

$ apt-cache search zsh_command_not_found
> command-not-found: /etc/zsh_command_not_found
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.