19
rated 0 times
[
19]
[
0]
/ answers: 1 / hits: 83394
/ 10 Months ago, mon, december 12, 2022, 6:09:18
The following grep
grep -r -e -n coll *
will display
fullpath/filename: <tag-name>coll</tag-name>
I would like to know what line has the following text, I tried adding -n
, but it did not work. I tried adding | grep -n *
, but it did something weird.
What I would like to see (I don't care about format) is
fullpath/filename:10: <tag-name>coll</tag-name>
More From » command-line