#!/bin/sh
#==============================================================================
# ext3undel                              (c) 2008 by Itzchak Rehberg & IzzySoft
#------------------------------------------------------------------------------
# ext3undel is a wrapper to the scripts of the package ext3undel - so you need
# not to remember which of the scripts to call
#==============================================================================
# $Id: ext3undel 9 2008-06-13 14:20:29Z izzy $

case "$1" in
  "-h"|"--help"|"-?")
    echo
    echo "Syntax:"
    echo "  $0 [--help | <filename>]"
    echo
    ;;
  "")
    gabi
    ;;
  *)
    ralf $@
    ;;
esac
