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

cd "/usr/local/lib/redeclipse" || exit 1
exec "./redeclipse" "$@"
