Good morning guys, I'm trying to extract from this file
I have necessary extract only alls links with pattern '/9.4.10/':
grep "/9.4.10/" test.txt
After this command i have see all links
How can I solve this problem?
Good morning guys, I'm trying to extract from this file
I have necessary extract only alls links with pattern '/9.4.10/':
grep "/9.4.10/" test.txt
After this command i have see all links
How can I solve this problem?
cat test.txt | wc -l, so grep is not the tool you want, as one matching will return the whole huge line.