find line number of specific text in file linux code example
Example: linux command to get number of lines in a file
wc -l <filename>
# output = <number of lines> <filename>
# to omit the file name in output
wc -l < <filename>
# output = <number of lines>