File: bash_command_not_found

package info (click to toggle)
command-not-found 18.04.5-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 8,184 kB
  • sloc: python: 995; sh: 43; makefile: 9
file content (14 lines) | stat: -rw-r--r-- 371 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# (c) Zygmunt Krynicki 2005,
# Licensed under GPL, see COPYING for the whole text
#
# This script will look-up command in the database and suggest
# installation of packages available from the repository

command_not_found_handle() {
  if  [ -x /usr/lib/command-not-found ]; then
     /usr/lib/command-not-found -- "$1" 
     return $?
  else
     return 127
  fi	    
}