Mail Archives: cygwin/2001/05/09/14:07:44
Try:
FOUND_IN_PATH=`find_in_path "foo"`
if [ "$FOUND_IN_PATH != "" ]; then
# this next line may return more than one result.
REAL_PATH=`find -perm -+x -maxdepth 1 -name "${TYPE_PATH}*"`
type -p $REAL_PATH
fi
If you are likely to run into a situation where you may have both 'foo' and
'foo.exe' in the same directory (or you just want a robust script) you will
have to decide how you wish to deal with that. I used find because ls would
return all files even if they were not executable.
________________________________
Glen Coakley, Sr. Software Engineer
MQSoftware Inc., (763) 543-4845
> -----Original Message-----
> From: Karr, David [mailto:david DOT karr AT cacheflow DOT com]
> Sent: Wednesday, May 09, 2001 12:43 PM
> To: 'cygwin AT cygwin DOT com'
> Subject: Get file type information about name returned from "type -p"
>
>
> I'm trying to design some validation scripts for an
> environment. One thing
> I want to check for is whether a script named "foo" is
> earlier in the path
> than a file named "foo.exe". I already have tools for
> parsing and searching
> the PATH, but when Cygwin reports that it found a "foo" in my
> path, I'm
> having trouble figuring out exactly what the file name is, or
> what kind of
> file it is. The "type" command gives me a name without an
> extent, but the
> "file" command doesn't like that.
>
> --
> Want to unsubscribe from this list?
> Check out: http://cygwin.com/ml/#unsubscribe-simple
--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple
- Raw text -