#!/bin/sh
# bzip2
# Wrapper for bzip2 to implement missing switches.

BZIP2=/usr/bin/bzip2

case "${1}" in
--help)
   ${BZIP2} --help
   # This needs to exit successfully.
   exit 0
   ;;
esac

${BZIP2} "$@"
exit $?
