open_toontown_panda3d/direct/src/leveleditor/printdir

11 lines
205 B
Bash
Executable File

#! /bin/sh
# Some Cygwin users don't have find set on on their path correctly, so
# we have to be explicit.
if [ -x /bin/find ]; then
/bin/find $1 -name \*$2 -print
else
find $1 -name \*$2 -print
fi