how to catch information in a different environment .....


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users how to catch information in a different environment .....
# 1  
Old 03-18-2004
how to catch information in a different environment .....

Hi ,

under a Telnet connection on AIX system , i'm using an ascii software console (here Lotus Notes admin console).

I would run a shell script to catch information thru this admin console , in other words :
1 i run my shell script
2 in this script run the admin console
3 get the new prompt
4 run a command under this console
5 quit this console with <CTRL> C
6then maybe continue the shell script

is it possible ? if yes how ?

Thanks in advance
Christian
# 2  
Old 03-18-2004
Remember this thread? If it is possible, the techniques that I used in that script should do it.
# 3  
Old 03-18-2004
Thanks ,

i will try it and tell you in return

Christian
# 4  
Old 04-02-2004
Hi , i've done my test and the script is the following :

************************
DELAY1=3
DELAY2=20
print Entrez Votre commande Admin Notes-
read CMDNOT
print

exec 4>&1

echo $CMDNOT

sleep $DELAY1
console >&4 2>&4 |&
sleep $DELAY1
print -p $CMDNOT
sleep $DELAY2
print -p ^C


********************************

==> the console command entered me in Lotus Notes console mode , the i send an Admin command ($CMDNOT)
then send a keyboard "control C" to quit the console mode
then finish the script.

The problem is that the console mode environment is not finishing at all , it continues to list messages as we are still in console mode and i'm forced to terminate the telnet session.

Can you help me to terminate this properly ?

Regards
Christian
# 5  
Old 04-07-2004
Hi ,

i'm still searching to terminate properly my script !
Somebody has an idea ?

It seems that with the "exec" command we enter in a different memory room , the control c forces to go out but without terminating the code !!!!!

Maybe Perderabo can help me ?

Thanks in advance
Christian
# 6  
Old 04-07-2004
Sorry, I don't know that console command.

Maybe you're not properly sending a control c?

Try
print -pn \\003
and
print -p \\003
# 7  
Old 04-08-2004
Thanks to help me !

When i send the "control C" or the "print -pn \\003" , the console Notes gives back the control to the script and the script terminates.

But the scrolling display of the console continues until i go out of the telnet session.

I've catched the following :

i ran the script in a 1st telnet session then catch the "ps " result in a second one:

<clazz015-notes01>/users/notes01 # ps -ef|grep console
notes01 23310 36780 1 16:43:20 pts/7 0:00 ksh /users/notes/scripts/console
notes01 37210 23310 0 16:43:20 pts/7 0:00 tail -f /users/notes01/LOG/console-notes

2 processes are created and when the script terminates with the "control c" , it kills the 1st process but not his son and lets it running , here the scrolling messages (tail -f) :

<clazz015-notes01>/users/notes01 # ps -ef|grep console
notes01 37210 1 0 16:43:20 pts/7 0:00 tail -f /users/notes01/LOG/console-notes


If i kill manually the last one (37210 pid) , it works!

Well do you see another better way to do this ?

Thanks
Christian
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Catch Zombie Process

Hi All, Anyone have any shell script to capture the zombie process, as according to the support they need the real time zombie PID, they only provide the kdb (0) > p* |grep -i defunct (0) > p * | grep <hex pid> But this is doesn't seem easy to catch the zombie as it is not always... (1 Reply)
Discussion started by: ckwan
1 Replies

2. Shell Programming and Scripting

catch the output of the URL

Hi all, anybody can help me in this? how to catch the output of the URL in scripting. exmple: if i give the URL: https://www.unix.com/shell-programming-scripting/155750-use-sed.html#post302503291 then output should be in onefile newfile.txt thanks in advance.. (6 Replies)
Discussion started by: rajesh_pola
6 Replies

3. Programming

help with C try catch

can someone give me an example of try catch in C, everytime i do it under the main, i get some try undeclared error, and dont know how to fix it... (3 Replies)
Discussion started by: omega666
3 Replies

4. Programming

Catch ctrl+d in C

Hello, I am programming some kind of shell in special distribution of Linux. My trouble comes with programming the sort function. It should work the same like in the standard shell. When you terminate input, there's need to put End Of Transmission character, which is CTRL+D. But I am not able to... (2 Replies)
Discussion started by: samciz
2 Replies

5. Shell Programming and Scripting

Not able to catch psftp errors

Hi, While running the psftp with the below code,it is able to connect and open the ftp connection and closed the connection. But my scriptfile Test.ftp,is having the code "cd directoryname" where the directoryname does not exists. In this case i should be able to catch the error,instead it is... (1 Reply)
Discussion started by: nsrihari
1 Replies

6. UNIX for Dummies Questions & Answers

catch unzip errors

Hi everybody, I'm new to linux world and I need your help!! I'm using vi to create a .sh script that process files moving them from a directory to another and unzipping a file. I need to catch errors while moving or unzipping files. For move command, I do: mv -f... (2 Replies)
Discussion started by: Laetitia
2 Replies

7. Shell Programming and Scripting

How to catch the exception on SFTP?

I just want to send files to remote machine via SFTP, my question is: how can I catch the exception when SFTP command error occur? for example: add a log when network interrupt on SFTP put(or failure on rename the remote file etc.). the shell run on linux. (2 Replies)
Discussion started by: younggun
2 Replies

8. Shell Programming and Scripting

How to catch the output

Hi All, I have a shell script for ex- #bin/ksh sqlplus user/pass << EOF select x from y; EOF my question is can I store the value of x in a variable in unix program so that i can user that value in shell script..... additionally after catching the value i want to perform some... (4 Replies)
Discussion started by: rpraharaj
4 Replies

9. UNIX for Dummies Questions & Answers

How to catch the exception

Dear friends, I am transferring some files to a windows system from Unix m/c thru FTP Script given below. echo "open $host quote USER $userid quote PASS $pwd $verbose $type cd $dir bin put $file close quit"|$ftp... (0 Replies)
Discussion started by: Vijayakumarpc
0 Replies

10. UNIX for Dummies Questions & Answers

How to catch the rscyn errors?

Hi, In my code, I am running rsync, if any error comes, I have to wirte the error to temp file and I want to send this temp file content to specified email address, I am getting starnge outpout, can you pls help to solve this? My code is: tempfile=error.`date '+%m%d%Y_%H%M%SGMT'` rsync -az -e... (3 Replies)
Discussion started by: redlotus72
3 Replies
Login or Register to Ask a Question