@echo off
ATTRIB -H D:\aragost
Since I don't want the echo I've put (as you can see) the command
"echo off"
at the beginning of the script. However I get the following echoing,
and this disturbs me:
Not resetting system file -
D:\aragost\bin\eclipse\features\org.eclipse.jdt.sour
ce_2.1.1\Thumbs.db
Not resetting system file -
D:\aragost\bin\eclipse\features\org.eclipse.jdt_2.1.
1\Thumbs.db
Not resetting system file -
D:\aragost\bin\eclipse\features\org.eclipse.pde_2.1.
0\Thumbs.db
etc., etc., etc.
Which command should I use to turn all this echoing completely?
Thank you for your answerz
John
Hello John,
@echo off only turns off echoing of the commands being issued, not the
the output of the commands themselves.
You can redirect the output of the commands to the pseudo device nul
this way eliminating it.
ATTRIB -H D:\aragost >nul
HTH
--
Greetings
Matthias
> @echo off
> ATTRIB -H D:\aragost
> Since I don't want the echo I've put (as you can see) the command
> "echo off"
> at the beginning of the script. However I get the following echoing,
> and this disturbs me:
> Not resetting system file -
> Not resetting system file -
> Not resetting system file -
> etc., etc., etc.
(Snipped)
> Which command should I use to turn all this echoing completely?
> John
*** Matthias has answered this, but I thought I would add that these
error messages probably should remain visible so that you'll know
something has not happend as you wanted.
Of course, if this is not important to you or the task being done, then
by all means send the commands to NUL.
Richard Bonner
http://www.chebucto.ns.ca/~ak621/DOS/
> Which command should I use to turn all this echoing completely?
CTTY NUL
attrib ... etc
CTTY CON
--
-=[]=---iAN CooG/HokutoForce+TWT---=[]=-
I don't know of any applications that actually do that. Please provide some
examples.
--
Todd Vargo (remove hyphen to reply by email)