#!/bin/sh

if [ "$USER" = "root" ] ; then
	echo "jad should not run by root for security reason."
	exit 1
fi

/usr/lib/jad/jad $@

