Summary: The ECHO command is not executed (if it was, the file would contain the string ECHOed). I think the zero-byte file is created because you're redirecti...
Summary: I want to generate dynamically html and for some other reason I have to use the echo-command. My question: is it possible to give the echo-command som...
Summary: For some reason the echo command doesn't work properly in my batch scripts. If I put @echo off or echo off (tried them both) as the first line of a ba...
Summary: G'day everyone, I have a problem with the echo command. I am trying to create a text file from within an SQL trigger. I can do so by shelling to DOS a...
Summary: Is there an easy way to escape a reserved character like "|" so it can be used following an ECHO command. I'm trying to save a line of text that conta...
Summary: How can I use the ECHO command to write an HTML tag to a text file? I'm creating a DOS batch script to write some HTML tags to a text file. If I type...
Summary: Hi! I would like to be able to use the echo command to move the cursor around the screen. Is there anyway to insert ansi control codes with the echo ...
Summary: No command com? LOl! I get that too, but I have a copy in C:\ and also in C:\windows\command\ If you are using 6.22 then I would venture you are using...
Summary: I have two problems with the echo command not displaying as I would like. The system reads the second line as “echo on”. Can a line starting with the ...
Summary: its possible... sorry im not so good to english..... first you have to made a file that do all the command.... 'this is the first of the batch file i...
Summary: I never thought of using echo to test this! The line length for echo is over 300 characters (WinME--is that DOS 7?), but it depends on whether they ar...
Summary: If you're on XP, this command will execute the ECHO command with each line from FILENAME: FOR /F "delims=" %a in (FILENAME) do ECHO %a If you're willi...
Summary: I was gonna reply to your other thread, but you've posted another one... Ok, the problem is that the ECHO command will send to STDOUT the message give...
Summary: Does anyone know what to put in a batch file with an ECHO command that would emulate a user hitting CTRL-Y keys? When executing a command a prompt sc...
Summary: So, dtech10 provided a way to get your 3rd party application's outputs together in one line. That would also be a way out, but the script would still ...
Summary: IVO wrote: > ... it will skip blank lines and doesn't > work if the text to be processed contains > the redirection symbols. Yeah, it will skip blank ...
Summary: The following command would return a list of the .mp3 files on the current directory: dir /b *.mp3 Now, the following will count how many lines are th...
Summary: Grately depends on the FTP client you use. I know only about the FTP.EXE that comes with Windows 95 (and gets copied to your WINDOWS\ folder when you ...
Summary: I need to prompt a user for a 2 digit number in a batch file, and not from the command line. The choice command only supports 1 alpha/numeric char. ...