Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.1 6/24/83; site mit-eddie.UUCP Path: utzoo!watmath!clyde!burl!mgnetp!ihnp4!houxm!houxz!vax135!cornell!uw-beaver!tektronix!hplabs!hao!seismo!harvard!wjh12!genrad!mit-eddie!smh From: smh@mit-eddie.UUCP (Steven M. Haflich) Newsgroups: net.unix Subject: Re: UNIX to VMS communication problems Message-ID: <2413@mit-eddie.UUCP> Date: Sat, 21-Jul-84 10:16:51 EDT Article-I.D.: mit-eddi.2413 Posted: Sat Jul 21 10:16:51 1984 Date-Received: Mon, 23-Jul-84 02:09:19 EDT References: <180@byucsa.UUCP> Organization: MIT, Cambridge, MA Lines: 29 I have used the following shell script command to transfer files from 4BSD to VMS at 1200 baud without problem. Your problem might be that many text editors cannot swallow steady 1200 baud input; they were designed to be driven by people. You will have to edit this before it will work. All the "^M" strings should be replaced with the single char \215, and the "^Z" should be replaced with \032. You might have to make additional simple changes to run this under S5 if you don't have csh, or if echo is significantly different. ======================== #! /bin/csh if ( -r $1 ) then echo -n set term/noecho \^M sleep 2 echo -n create $1 \^M sleep 2 cat $1 | tr '\012' '\015' sleep 2 echo -n ^Z sleep 2 echo -n set term/echo \^M else echo -n Nothing doing -- $1 unreadable \^M endif ======================== Steve Haflich, MIT