How would I be able to manipulate the output text of grep.
Right now I am using the command:
grep -i "<url>" $file >> ./txtFiles/$file.txt
This would output something like this:
<url>http://www.simplyrecipes.com/recipes/chicken_curry_salad/</url>
and then the next text will go to the next line.
How would I be able to get rid of the <url>
and </url>
and stop it from going to the next line at the end.