Jun 11, 2003 #1 navarro1 Technical User Joined Jun 11, 2003 Messages 9 Location US How can I transfer the contents of file1 to file2 and the contents of file2 to file1 ? ibis
Jun 11, 2003 #2 SamBones Programmer Joined Aug 8, 2002 Messages 3,186 Location US Like this... Code: mv file1 file.tmp mv file2 file1 mv file.tmp file2 Hope this helps. Upvote 0 Downvote
Jun 11, 2003 #3 bluedragon2 IS-IT--Management Joined Jan 24, 2003 Messages 2,642 Location US That flips file names, but do you want to merge the files? Upvote 0 Downvote
Jun 11, 2003 Thread starter #4 navarro1 Technical User Joined Jun 11, 2003 Messages 9 Location US It did work perfect. Thanks a bunch Upvote 0 Downvote
Jun 11, 2003 Thread starter #5 navarro1 Technical User Joined Jun 11, 2003 Messages 9 Location US I thougth it would be easier to flap names, but I didn't want to merge files. Thanks for your reply Upvote 0 Downvote