mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
14 lines
233 B
Text
14 lines
233 B
Text
|
#!/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
|
||
|
done
|