cpio 245 B

123456789
  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 [ -x /usr/bin/cpio ];then
  5. /usr/bin/cpio --quiet "$@"
  6. else
  7. /bin/cpio --quiet "$@"
  8. fi