command-not-found.sh 166 B

123456789
  1. # command-not-found handle support
  2. if [ -x /usr/bin/command-not-found ]; then
  3. function command_not_found_handle
  4. {
  5. /usr/bin/command-not-found $1
  6. return $?
  7. }
  8. fi