|
Shell Programming and Scripting
Hi
Iam using grep command as follows in my script
read_file1()
{
cat file1.txt | while read line
do
grep $line file2.txt >> out.txt
done
}
read_file1
This way the performance is very slow. We are having lacks of records in file1 and file2
how can i improve the performance.
|