#!/bin/sh
for arg
do
    if [ "$arg" = --help ]
    then
       exec man "redeclipse16"
    fi
done

cd "/usr/pkg/lib/redeclipse16" || exit 1
exec "./redeclipse16" "$@"
