Computer Science, asked by raji9788, 1 year ago

Write a command to list all the lines from the file "employee.Txt" which does not end with semicolon.

Answers

Answered by mission123
0

Explanation:

Can I use SQL commands??

Answered by deepakpal2227
3

Answer:

grep -v ";" employee.txt

Explanation:

grep -v is used to show lines except ending with whatever colon or semicolon etc

Similar questions