Files
core/system/base/bash/files/command-not-found.sh
T
2015-02-24 11:18:35 +02:00

9 lines
166 B
Bash

# 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