Echo off what is it?

Solved
lea -  
 miiforlong -
Hello,
I am trying to save a .BAT file and I receive the message "echo off" and I can't continue. What is happening? I am completely clueless and therefore lost; To make matters worse, this is very urgent; thank you

4 answers

rikimaru
 
@echo on: Display each line on the screen (by default), including the path c:\xxxxx\xxxx\>
@echo off: Only display the command output on the screen

To see the difference, simply open a command prompt by pressing Windows key + R then cmd
and type the following commands:

@echo off
echo hello


Then type the following commands:

@echo on
echo hello
75
carbon3 Posted messages 471 Status Member 73
 
slt ; I type '@echo off : hello' to see only 'hello' and I get: 'off : hello'. Even my old memories don't understand the result. Any idea 2013?
0
miiforlong > carbon3 Posted messages 471 Status Member
 

must write:

@echo off

echo hello

0
mon pseudo
 
Try either:

@echo hello

or:

@echo on
hello
@echo off
0