as for > vs >>
> rewrites the file to the4 enterd text, where as >> adds the text onto the end of the file
so
Quote:
echo 5> c:\1.txt
echo 5> c:\1.txt
echo 5> c:\1.txt
echo 5> c:\1.txt
echo 5> c:\1.txt
|
the file 1.txt would contain
where as
Quote:
echo 5>> c:\1.txt
echo 5>> c:\1.txt
echo 5>> c:\1.txt
echo 5>> c:\1.txt
echo 5>> c:\1.txt
|
would contain