I have file with 6000 line from these some are not useful i want to remove those lines by using perl program. Say
input file (input.txt)
............................................................
this is first line
this is second
third
hello
this is second ....
.................................................................
Here the line starting with ... are useless i want to delete them.
Output should be like
output (output.txt)
........................................................................
this is first line
third
hello
.................................................................
Suggest some expressions or program