Display the lines from the file teknoscript.txt that contain the string lin.
Answers
Answered by
0
Answer:
it is grid lines the correct answer
Answered by
0
grep -n lin teknoscript.txt
Explanation:
GREP stands for Globally search a Regular Expression and Print.
The basic usage of the command is : grep [options] expression filename.
GREP will by default display any lines in a file that contains the expression.
GREP command can be used to find or search a regular expression or a string in a text file.
One can use the grep command within a Linux or Unix-based system to perform text searches for defined criteria of words or strings.
Similar questions