Hi All,
I'm going crazy with this. I have a file called unique.txt with allot of values in. When I run my script it will add 1 value (1319613308.476855) to my value file but when I grep the value it displays nothing and I know the value is present in my Full_* file.
What can the problem be?
#!/bin/bash
echo "Filtering the Data"
echo ""
sleep 2
for uniqueValue in $(cat unique.txt);do
echo $uniqueValue > value
echo "Starting new Query"
echo $uniqueValue
cat value | xargs -i /bin/grep {} Full_*
sleep 2
echo ""
done
Regards