Skip to content
Snippets Groups Projects
Commit 47132366 authored by Lawson Whitney's avatar Lawson Whitney Committed by Alexandre Julliard
Browse files

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

parent b111b6d2
No related branches found
No related tags found
No related merge requests found
#! /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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment