Works fine for me:
------------------------------------------------
C:\>type mycommands.sql
CONNECT scott/
[email protected]
spool c:\output.txt
Select sysdate from dual;
spool off
exit
C:\>type output.txt
The system cannot find the file specified.
C:\>sqlplus /nolog @c:\mycommands.sql
SQL*Plus: Release 9.0.1.0.1 - Production on Sun Jun 27 15:07:09 2004
(c) Copyright 2001 Oracle Corporation. All rights reserved.
Connected.
SYSDATE
---------
27-JUN-04
Disconnected from Oracle8i Enterprise Edition Release 8.1.7.4.0 - Production
With the Partitioning option
JServer Release 8.1.7.4.0 - Production
C:\>
C:\>type output.txt
SYSDATE
---------
27-JUN-04
C:\>
--------------------------------------------------------
I am on W2K Pro.
AM