create core package

This commit is contained in:
aydemir
2015-02-24 11:18:35 +02:00
parent 0e4b743b82
commit 70b25d0f95
1098 changed files with 169545 additions and 0 deletions
@@ -0,0 +1,8 @@
# 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