Computer Science, asked by sethuprane518, 1 year ago

Write a command to list all the lines from the file "employee.Txt" ending with a semicolon.

Answers

Answered by sushrutgupta
1

Answer:

list;

Explanation:

Answered by mayuribhosale7942
2

Answer:

grep '[^;]$' <filename>

Explanation:

Similar questions