Auto sending text files from SCO box to a PC via serial cable


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Auto sending text files from SCO box to a PC via serial cable
# 1  
Old 03-20-2008
Auto sending text files from SCO box to a PC via serial cable

I have an SCO system with several PC's hooked up via ProComm and serial cabling (no Ethernet). I want to occasionally transfer a small text file from the UNIX system to a specific PC without the PC operator having to do anything (she may be out to lunch or doing other work during the transfer)

What is a UNIX command (or program) that might do this transfer? (I assume we can use cron to run this command or program every few minutes).

Graham Browne
Business Systems, Inc.
Jackson, MS
Phone: 601-957-1500
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Web Development

How to copy a selected value of list box into a text box in html form?

hi, i have a list box , a text box and a button in a html form. list box displays some values, when a user selects a value from the list box and press the button. the selected value should be copied to the text box value. can any1 give me a html and javascript code to do this facility. ... (1 Reply)
Discussion started by: Little
1 Replies

2. Hardware

Serial connection CAT5 instead of RS232 and Null Modem or Straight cable.

Hello, I want to connect a VT520 terminal to p3 linux box. I have two questions regarding the connection. First, is it possible to use RJ45 instead of RS232 cable. (with DB9 pin to RJ45 and DB25 to RJ45 converter). Second point is that; do i need null modem cable or straight cable... (5 Replies)
Discussion started by: vectrum
5 Replies

3. Hardware

How to install a driver of my USB-A to Serial Cable

Hi Gurus of Unix Recently I install a OpenSolaris in My HP 530 In this moment want to install a USB-A to Serial Cable. Any guru can send a Link where I can use how reference. I want to configure a Router and my PC don't have any serial Port. My LapTOP only has USB ports. In this case I buy a... (2 Replies)
Discussion started by: andresguillen
2 Replies

4. UNIX for Dummies Questions & Answers

rollover cable with linux box

hi all gurus can we using laptop(XP) with rollover cable to connect serial port on linux box? thanks jiajin (1 Reply)
Discussion started by: lijiajin
1 Replies

5. Shell Programming and Scripting

FTP some text files from Windows box to unix

hi all, can anybody help me with script or command to ftp some text file from windows machine to AIX machine. this is shud be done by executing a shell script. (1 Reply)
Discussion started by: suprithhr
1 Replies

6. UNIX for Dummies Questions & Answers

sorting files with find command before sending to text file

i need help with my script.... i am suppose to grab files within a certain date range now i have done that already using the touch and find command (found them in other threads) touch -d "$date_start" ./tmp1 touch -d "$date_end" ./tmp2 find "$data_location" -maxdepth 1 -newer ./tmp1 !... (6 Replies)
Discussion started by: deking
6 Replies

7. Shell Programming and Scripting

Sending text files as attachments

Hi, I have used the following command to send a text file "archiver.log" as attachment. (cat mail.log; uuencode archiver.log archiver.log; ) | mailx -s "Failure" asd@a.com : But in the mail i am not getting new lines in the text file.New Lines are getting replaced with some weird... (2 Replies)
Discussion started by: radhika03
2 Replies

8. Solaris

null modem serial cable for server testing

HI all, i still have a problem when using null modem to see the output from my server(sun ultra en 3000). i followed the instruction from the internet, but it is not working. 1. i am using db9(5 4, 2 rows,put in laptop serial port) and db25(13 12, 2 rows,put in (A) server serial port). 2.... (3 Replies)
Discussion started by: waterbear
3 Replies

9. UNIX for Advanced & Expert Users

serial card in SCO Unix

Does anyone know how to configure a generic serial card within SCO Unix ???? Any specific driver ? Any help will be greatly appreciated CHRIS (7 Replies)
Discussion started by: germiphene
7 Replies
Login or Register to Ask a Question
RZ(1)							      General Commands Manual							     RZ(1)

NAME
rz - receive a file using the zmodem protocol SYNOPSIS
rz [-abepqvy] [-t timeout] OPTIONS
-a CP/M to UNIX conventions -b Binary file -e Escape for all control characters -p Protect file if it already exists -q Quiet; opposite of verbose -t Set timeout in tenths of a second -v Verbose; opposite of quiet -y Yes, clobber existing files EXAMPLES
rz </dev/tty01 >/dev/tty01 # Receive a file DESCRIPTION
The XMODEM, YMODEM, and ZMODEM family of file transfer programs are widely used on personal computers. MINIX supports ZMODEM, the most advanced of the set. The programs sz and rz are used for sending and receiving, respectively. Rz and sz are programs that uses an error correcting protocol to transfer files over a dial-in serial port from a variety of programs run- ning under various operating systems. Rz (Receive ZMODEM) receives files with the ZMODEM batch protocol. Pathnames are supplied by the sending program, and directories are made if necessary (and possible). The meanings of the available options are: -a Convert files to UNIX conventions by stripping carriage returns and all characters beginning with the first Control Z (CP/M end of file). -b Binary (tell it like it is) file transfer override. -c Request 16 bit CRC. XMODEM file transfers default to 8 bit checksum. YMODEM and ZMODEM normally use 16 bit CRC. -D Output file data to /dev/null; for testing. -e Force sender to escape all control characters; normally XON, XOFF, DLE, CR-@-CR, and Ctrl-X are escaped. -p Protect: skip file if destination file exists. -q Quiet suppresses verbosity. -t Change timeout tenths of seconds (timeout follows flag). -v Verbose causes a list of file names to be appended to /tmp/rzlog. More v's generate more output. -y Yes, clobber any existing files with the same name. SEE ALSO
sz(1), term(1). RZ(1)