Commit 47132366 authored by Lawson Whitney's avatar Lawson Whitney Committed by Alexandre Julliard

Make findfunc look for .spec files, and put it with the other tools.

parent b111b6d2
#! /bin/sh
name="blah"
#!/bin/sh
name="$1"
if [ "$name" == "" ] ; then
echo -n 'Function: '
read name;
fi
while [ "$name" != "" ]
do
find $(dirname $0)/../ -name \*.spec | xargs -l1024 grep -i $name
echo -n 'Function: '
read name
grep -i $name *.spec
done
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment