forgot to remove the grep

This commit is contained in:
Peter Hedenskog 2012-08-13 21:43:10 +02:00
parent 7dff364b62
commit 3e824a1698
1 changed files with 2 additions and 2 deletions

View File

@ -75,8 +75,8 @@ do
if [[ $line == --* ]]
then
## We are hitting the same url twice since spider mode, however, we should only use it when it's verified
echo "$line" | grep -E "\-\-\d{4}" | cut -d " " -f 4
echo "$line" | grep -E "\-\-\d{4}" | cut -d " " -f 4 >> $REPORT_DATA_DIR/urls.txt
echo "$line" | cut -d " " -f 4
echo "$line" | cut -d " " -f 4 >> $REPORT_DATA_DIR/urls.txt
fi
done