Files
core/system/base/bash/files/command-not-found.sh
2019-12-11 00:53:57 +03:00

9 lines
166 B
Bash
Executable File

# command-not-found handle support
if [ -x /usr/bin/command-not-found ]; then
function command_not_found_handle
{
/usr/bin/command-not-found $1
return $?
}
fi