tar 293 B

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