Write a command to list all the lines from the file employee.Txt ending with a semicolon
Answers
Answered by
6
Answer:
· Answer: Command to "list all the lines" from the file "employee.txt" ending with "semi colon" is: grep ';' employee.txt. "Grep command" is used to find out the given file with specified pattern and displays all the lines matching the pattern.
Similar questions