Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Batch files query

Status
Not open for further replies.

paulcooke

Programmer
Dec 11, 2003
35
0
0
GB
hello just a quick query really regardings batch files.
I have never had to use before and in the process of converting these batch files into a program.

query is what does the >> command do in the following examples?

eg.
ECHO. %DATE% %TIME% No files to process >>e:\Extracted\log.txt

ECHO. %DATE% %TIME% FTP Run >>e:\Extracted\log.txt
 
I imagine it will write the results out to the speficied file


____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.

 
The >> is used to append to an exsisting file.
each time you run the bat files, the results are
added to the file(s)



if it is to be it's up to me
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top