[BACK]Return to locate CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / pari-2.2 / config

Annotation of OpenXM_contrib/pari-2.2/config/locate, Revision 1.1.1.1

1.1       noro        1: #!/bin/sh
                      2: t=$1; shift; dflt=$1; shift
                      3:
                      4: for dir in $*; do
                      5:   file=$dir/$t
                      6:   if test -f $file; then
                      7:     echo $file; exit 0
                      8:   fi
                      9:   if test -f $file.exe; then
                     10:     echo $file.exe; exit 0
                     11:   fi
                     12: done
                     13: echo $dflt; exit 1

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>