Microsoft
Software
Hardware
Network
Question : Redirection in batch file
For example
The command line dir>mydir.txt works fine but if i put exactly the same line in a batch file (because I want to use variables like %1) it will work but display a strange output:
ie. "dir 1>mydir.txt"
(and dir
mydir.txt")
and dir>>mydir.txt will be ok,
Answer : Redirection in batch file
Thats fine. > is effectively 1> but when you add a parameter like %1 then dir %1>mydir.txt will become dir % 1>mydir.txt so what you want is dir %1 >mydir.txt !
Steve
Random Solutions
e107 install
Use powershell to move exchange folder contents from one user to another?
font
Type and Rowtype
RecordSet to Table - Access
Outlook 2007 Color Categories
Running MacOS Tiger 10.4 on PC
Cannot see devices in MobileAdmin
How to limit number of routes per ip
access time and use_hash(Oracle PL/SQL)