summaryrefslogtreecommitdiff
path: root/scripts/find
blob: ea38d92fb8c69b365e26b9369e5110a204c3ef98 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

if [ -z "$(which gfind 2>/dev/null)" ];then
	/usr/bin/find "$@"
else
	gfind "$@"
fi