Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
echo parameters
Name: JohnT Date: February 2, 2001 at 17:26:00 Pacific
Name: W0rm Date: February 2, 2001 at 19:00:40 Pacific
Reply:
are you retarded?
0
Response Number 2
Name: DoOMsdAY Date: February 3, 2001 at 07:56:06 Pacific
Reply:
What are you attempting to do?
0
Response Number 3
Name: zippy Date: February 3, 2001 at 17:54:59 Pacific
Reply:
Echo is a dos command used in the autoexec.bat file to display commands as they are executed in the boot procedure.When the command @ECHO ON is used in the autoexec.bat all commands are displayed at boot. Your command C:\echo >a.htm Makes no sense
0
Response Number 4
Name: Laurence Date: February 5, 2001 at 10:03:45 Pacific
Reply:
Read about how to use ECHO here: http://home7.inet.tele.dk/batfiles/b4ustart/echo.htm
0
Response Number 5
Name: World Library Date: February 5, 2001 at 17:36:45 Pacific
Reply:
Hmm. Try cls @echo off type C:\echo\*.* > a.htm
Well you wanted to know. Byte me. LOL
W.L.
0
Response Number 6
Name: DoOMsdAY Date: February 6, 2001 at 03:39:48 Pacific
Reply:
How about this then?
[recurse.bat] set gt=> set lt= output.html for %%f in (c:\dir\*.*) do echo %lt%A HREF="file:///c:\dir\%1"%gt%%%f%lt%/A%gt%%lt%BR%gt% >> output.html echo %lt%/BODY%gt%%lt%/HTML%gt% >> output.html set gt= set lt=
Per usual, I wrote it in my head and don't guarantee it works as it is. Albeit after I post I really want to try it and find out. ;)
0
Response Number 7
Name: DoOMsdAY Date: February 6, 2001 at 03:40:54 Pacific
Reply:
f---ing anti-HTML. Gimme a sec. I'll post the goddam code to my web page and give you a link then...
0
Response Number 8
Name: DoOMsdAY Date: February 6, 2001 at 03:45:22 Pacific
Reply:
http://www.geocities.com/-doomsday-/resurse.html
0
Response Number 9
Name: World Library Date: February 6, 2001 at 06:12:10 Pacific
Reply:
Correction to my first post.
C:\echo > a.htm (enter)
A file called a.htm should be created. Zero bytes but there.
Might try c:\echo a.htm > a.htm
This way when you open it you have a reference to what it is.
Summary: If the file is sorted as you stated and you run under an NT-kernel operating system (Win NT/2K/XP), the following batch is what you want. Warning: be sure the lines Set CLine=%%A Set BLine=!CLine! end...
Summary: Jon, when I try your suggestion, all that returns is Parameter: param1 @echo off echo Parameters: %1 %2 %3 %4 %5 %6 %7 %8 %9 What sort of response would you be expecting if it did return a program pa...
Summary: Adam An ammendment. @echo off if %1"=="" goto error %1 goto exit :error echo Parameter not entered or file not found :exit exit Bob Murphy was an optimist. ...