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!

Something like the Cat Command in Unix 2

Status
Not open for further replies.

AlisonEmmett

Technical User
Sep 8, 2000
15
0
0
GB
If I want to merge two files in Unix, I can type

cat file1 file2 > file3

How can I do this in NT ?? [sig][/sig]
 
Open a DOS shell, type in :

copy file1+file2 file3

That's it. [sig][/sig]
 
[tab]You could also use the command type which is NT's (& DOS's ) close relative to Unix's cat.

type file1 file2 > file3

[sig]<p>James P. Cottingham<br><a href=mailto: > </a><br><a href= Veneer Co., Inc.</a><br>All opinions are mine alone and do not necessarily reflect those of my employer.[/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top