#!/bin/sh

if [ "$(file -i "$1" | grep 'application/x-executable;')" != "" ]; then
    big-execute "$*"
else
    /usr/bin/kde-open5 "$*"
fi
