3
¿Cómo obtener el número de línea de grep?
El siguiente grep grep -r -e -n coll * mostrará fullpath/filename: <tag-name>coll</tag-name> Me gustaría saber qué línea tiene el siguiente texto, intenté agregar -n, pero no funcionó. Intenté agregar | grep -n *, pero hizo algo extraño. Lo que me gustaría ver (no me importa el formato) es fullpath/filename:10: <tag-name>coll</tag-name>
18
command-line
grep