สำหรับbash
, พฤติกรรมของมันจะถูกควบคุมโดยฟังก์ชั่นเชลล์command_not_found_handle
(ดูman bash
, ภายใต้ COMMAND EXECUTION)
หากต้องการดูว่าพฤติกรรมใดที่กำหนดโดยฟังก์ชันนั้นคุณสามารถออก:
declare -p -f command_not_found_handle
คุณสามารถเปลี่ยนโปรแกรมที่ใช้โดยการกำหนดcommand_not_found_handle
ฟังก์ชันใหม่
ใน Ubuntu 14.04 LTS ดูเหมือนว่าพฤติกรรมเริ่มต้นจะถูกกำหนดโดยตรงใน/etc/bash.bashrc
:
# if the command-not-found package is installed, use it
if [ -x /usr/lib/command-not-found -o -x /usr/share/command-not-found/command-not-found ]; then
function command_not_found_handle {
# check because c-n-f could've been removed in the meantime
if [ -x /usr/lib/command-not-found ]; then
/usr/lib/command-not-found -- "$1"
return $?
elif [ -x /usr/share/command-not-found/command-not-found ]; then
/usr/share/command-not-found/command-not-found -- "$1"
return $?
else
printf "%s: command not found\n" "$1" >&2
return 127
fi
}
fi