#!/usr/bin/sh

echo -e "QPhotoRec running on blackPanther OS 18.1"

if [ $UID = "0" ]; then

    exec /usr/bin/qphotorec.bin

else

    default-su -c "qphotorec.bin $@" 2>/dev/null

fi

