find 286 B

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