tar 243 B

1234567891011
  1. #!/usr/bin/env bash
  2. # $Id$
  3. #-
  4. # This file is part of the OpenADK project. OpenADK is copyrighted
  5. # material, please see the LICENCE file in the top-level directory.
  6. if [ -z "$(which gtar 2>/dev/null)" ];then
  7. /bin/tar "$@"
  8. else
  9. gtar "$@"
  10. fi