mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 17:43:44 +00:00
11 lines
121 B
Text
11 lines
121 B
Text
|
#! /bin/sh
|
||
|
|
||
|
name="blah"
|
||
|
|
||
|
while [ "$name" != "" ]
|
||
|
do
|
||
|
echo -n 'Function: '
|
||
|
read name
|
||
|
grep -i $name *.spec
|
||
|
done
|