Minimize ksh


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Minimize ksh
# 1  
Old 09-17-2001
Java Minimize ksh

Dear,

Have any command which can minimize the ksh windows?

I use telnet to connect to server.


Wilson
# 2  
Old 09-18-2001
The best I can figure, you want to be able to run a few programs at once. Is this correct?
If so, you can use the & operator at the end of a command, then use the jobs command, ^Z, and fg / bg.

If my first statement is correct, please reply back, and I'll be happy to give a little more insight into all of this...
# 3  
Old 09-18-2001
Sorry, i haven't mention the details of what i want to do.
let me explain it.

i) 2 terminals, A and B.
ii) A invoke B's program (through Java RMI)
iii) A then minimize its command shell.
<= point iii) is my hope, let user seems as the terminals terminated.
iv) B can run its program.
# 4  
Old 09-19-2001
So you want terminal A to continue running the program after the user has logged off?
# 5  
Old 09-19-2001
My hope is that

i. Actually, the Terminal A is still running but the terminal is minimized.

ii. The terminal B is still the invoked program.
# 6  
Old 09-21-2001
I'm very sorry, to my knowledge you can't "minimize" a shell, nor can a "terminal" be run like a program from another terminal.

Maybe you can be very specific and spell out EXACTLY what you're trying to do - I'll do my best to help.
# 7  
Old 09-21-2001
Sorry...
I have not explained in detail.
Let me try to explain what i want to do.

1. In windows 98.
2. Use "telnet" to login to UNIX machine.
3. user can use their mouse to click the top-right-hand-corner's minimize icon "_"' to minimize this windows.
4. But now, i hope I can use command to minimize the windows rather than click the icon. <== this is my hope.

I hope you can understand what my hope.

Yours
Wilson
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Looking to minimize 'for' loops in script

Hi, Below is the script that I came up with but looking to see if there is a more appropriate way to achieve this by reducing number of "for" loops or something. Regards, mbak #!/usr/bin/ksh status=missing for disk in `lspv | awk '{print $1}'` do MISSPATH=`lspath -l ${disk} -s... (3 Replies)
Discussion started by: mbak
3 Replies

2. Shell Programming and Scripting

different behaviour for ksh and ksh -x

I'm getting different behaviour when executing below script in debug option. $ cat ss.ksh ff=$(pwd) echo " ff : $ff" $ ksh ss.ksh ff : /tmp $ ksh -x ss.ksh + + pwd ff= + echo ff : ff : I was getting this behaviour in my actuall script i'm able to reproduce this in simple script... (4 Replies)
Discussion started by: luckybalaji
4 Replies

3. UNIX for Advanced & Expert Users

Conky apps key binding so that no need to minimize the windows open to see desktop

Hi I would like to ask if someone try or is there any key binding about the conky apps..I would like to know if it possible to key bind the conky running in desktop so that everytime i want to see the running conkyrc on the desktop there is no need for me to minimize the open windows inorder... (0 Replies)
Discussion started by: jao_madn
0 Replies

4. UNIX for Dummies Questions & Answers

Difference Between executing llike ./myscript.ksh and . ./myscript.ksh

Hi , What is the diffence between executing the script like ./myscript.ksh . ./myscript.ksh I have found 2 difference but could not find the reason 1. If i export a variable in myscript.ksh and execute it like . ./myscript.ksh the i can access the other scripts that are present in... (5 Replies)
Discussion started by: max_hammer
5 Replies

5. Shell Programming and Scripting

Minimize command line

Hello, I am looking for help to minimize this commande line. The commande is working fine but I tried to make it shorter ... It's about to get rid of some characters. | sed '/NODE*/d' | cut -d "'" -f 2 | sed '/;;/d' | sed '/ /d' | sed 's///g' Thanks for your help (8 Replies)
Discussion started by: Aswex
8 Replies

6. Shell Programming and Scripting

KSH script to run other ksh scripts and output it to a file and/or email

Hi I am new to this Scripting process and would like to know How can i write a ksh script that will call other ksh scripts and write the output to a file and/or email. For example ------- Script ABC ------- a.ksh b.ksh c.ksh I need to call all three scripts execute them and... (2 Replies)
Discussion started by: pacifican
2 Replies

7. Shell Programming and Scripting

import var and function from ksh script to another ksh script

Ih all, i have multiples ksh scripts for crontab's unix jobs they all have same variables declarations and some similar functions i would have a only single script file to declare my variables, like: var1= "aaa" var2= "bbb" var3= "ccc" ... function ab { ...} function bc { ... }... (2 Replies)
Discussion started by: wolfhurt
2 Replies

8. Shell Programming and Scripting

executing a ksh script from another ksh script

Hi, I'm new to unix scripting.How can i call a script from another script. I have a.ksh and b.ksh .I have to call b.ksh from a.ksh after it is successfully exceuted. I tried using #!/bin/ksh -x in a.ksh and at the end i have used /path/b.ksh My problem is it is executing only a.ksh.it... (6 Replies)
Discussion started by: ammu
6 Replies

9. UNIX for Dummies Questions & Answers

Equivalent unix command to minimize/maximize xterm window

To all experts, I need some advice on how I can enter a unix command which is equivalent to the action of minimizing/maximizing an active xterm window. How can I do this (i) when control is in the active xterm window to be minimized/maximized , & (ii) when control is in a xterm window which runs... (0 Replies)
Discussion started by: icemocha75
0 Replies
Login or Register to Ask a Question