[Hardhats-members] Re: Configuration Project -- update

2004-10-26 Thread John Leo Zimmer
OK, Something to play with. Thanks, Kevin gra'pa Z -- Original Message --- From: Kevin Toppenberg [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Mon, 25 Oct 2004 20:12:51 -0700 (PDT) Subject: Re: [Hardhats-members] Configuration Project -- update Let's try this

RE: [Hardhats-members] Fwd: Text of Article from Modern Physician

2004-10-26 Thread Vincent . Dodd
we are working on an interface. -Original Message- From: A. Forrey [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 11:15 AM To: [EMAIL PROTECTED] Subject: Re: [Hardhats-members] Fwd: Text of Article from Modern Physician The issue of lab data communication has largely been

[Hardhats-members] Linux console as terminal emulator, with scripting?

2004-10-26 Thread Kevin Toppenberg
Hello all, I need to do some terminal scripting. As I try to download old progress notes from my server, it keeps stopping and asking me a pointless question (1000's of times!). I need a simple terminal script that enters N. I know that TeraTerm Pro will do scripting, but I can't get it to

Re: [Hardhats-members] Linux console as terminal emulator, with scripting?

2004-10-26 Thread Maury Pepper
Kevin, What problem are you having with TeraTerm? For scripting, terminal type usually isn't an issue. The keyboard config file allows for redefining most of the keys. (I can help with this.) It also has TEK4010 emulation which perhaps your system can handle. - Original Message -

Re: [Hardhats-members] Linux console as terminal emulator, with scripting?

2004-10-26 Thread Kevin Toppenberg
OK, I'm going to think out loud. Please let me know if I am off track. In my bash script, I will need to initiate a connection to my old (AIX) server. We're on a VPN, so are using telnet. #begin script telnet xx.xx.xx.xx echo goodbyte #end script The above script will not show goodbye until

[Hardhats-members] Re: Linux console as terminal emulator, with scripting?

2004-10-26 Thread John Leo Zimmer
You need a way to hook GTM to your 3151 terminal, whatever that is. Then you could use MUMPS for your scripting. Used to be easy when dumb terminals were sufficiently dumb. gra'pa Z -- Original Message --- From: Kevin Toppenberg [EMAIL PROTECTED] To: Hardhats Sourceforge

RE: [Hardhats-members] Linux console as terminal emulator, with scripting?

2004-10-26 Thread Marc Aylesworth
You should be able to remote shell (rsh) into the mahine. Ex. rsh command or script To do the same thing Thank you, Marc Aylesworth Health Specialist Technician Oneida Indian Nation 223 Genesee Street Oneida, New York 13421 (315) 829-8909 This electronic transmission is intended

RE: [Hardhats-members] Linux console as terminal emulator, with scripting?

2004-10-26 Thread Benjamin Irwin
Kea! Does have a scripting language that allows just that option. Something like if the last string received is Hit and Key to continue then Kea! Will insert a carriage return. However, I have found all terminal emulators to have their own script language, everything from Basic based to Java

Re: [Hardhats-members] Linux console as terminal emulator, with scripting?

2004-10-26 Thread Maury Pepper
Kevin, If escape sequences are necessary to navigate, and if you don't know the escape sequences, then how will you write a script which contains all of the necessary characters? The following termcap segment came from www.blueemulations.com/e3151doc.shtml

Re: [Hardhats-members] Linux console as terminal emulator, with scripting?

2004-10-26 Thread Maury Pepper
If escape sequences are necessary to navigate, and if you don't know the escape sequences, then how will you write a script which contains all of the necessary characters? The following termcap segment came from www.blueemulations.com/e3151doc.shtml :f1=\Ea\r:f2=\Eb\r:f3=\Ec\r:f4=\Ed\r:f5=\Ee\r:

Re: [Hardhats-members] Re: Linux console as terminal emulator, with scripting?

2004-10-26 Thread Floyd Dennis
On 10/26/04 5:22 PM, Kevin Toppenberg [EMAIL PROTECTED] wrote: # Setenv DISPLAY=vt-100 ksh: Setenv: not found. # Export DISPLAY=vt-100 ksh: Export: not found. AIX commands are case-sensitive. Make certain you're using 'setenv/export' instead of 'Setenv/Export' .