I need to use findstr command without new line.
My file "prova.txt" contains:
La#
Do#
Fa#
My batch file contains:
@echo off
FINDSTR Do# prova.txt
The result of command is:
Do#
//second empty line
Instead I wish it was:
Do#
How do I get this?
I Explain better:
I don't want the new line (the Enter keys) after the findstr command.