|
|
MACRO TO EMAIL DIRECTLY TO ANOTHER UNIX MACHINE via UUCP#(@) script for moving spooler files via email to GAYLA, a user on another # dentech system (we exchange email with other local offices, bypassing the internet!). # splr = /u/DTECH/DAT/W01 via symbolic link # strip ^M in reports with dtox; rename stripped file, and email. # "DENTECH" is in report name for outlook wizard (used to place report # in separate Outlook2000 folder. var="CLN" cd /splr rm *CLN for e in CLNINQ* do dtox $e > $e${var}; <$e${var} mail -s "DENTECH" gayla done |
|
|