find 258 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. os=$(uname)
  5. case $os in
  6. Darwin)
  7. /opt/local/libexec/gnubin/find "$@"
  8. ;;
  9. *)
  10. find "$@"
  11. ;;
  12. esac