Re: [vtcl-user] exit on a unix system.

2000-10-03 Thread Josua Dietze
On Don, 31 Aug 2000, you wrote: > I can startup unix commands like the one below, but would like > an exit button or command for each as well. > Could someone give me a pointer. "exec" returns the numeric process id of the command it started. You can kill it without side effects by "kill " start

Re: [vtcl-user] exit on a unix system.

2000-10-02 Thread Kenneth Jacker
> On Sun, 1 Oct 2000, Dave Watson wrote: >> To kill the top program: >> >> button $base.but23 \ -background #00aed2 -borderwidth 5 \ >> -command {exec killall -9 top} -text {Kill Top} rick> Careful! killall does different things on different unix's! I agree! Last week I executed a

Re: [vtcl-user] exit on a unix system.

2000-10-02 Thread Rick Macdonald
On Sun, 1 Oct 2000, Dave Watson wrote: > To kill the top program: > > button $base.but23 \ > -background #00aed2 -borderwidth 5 \ > -command {exec killall -9 top} -text {Kill Top} Careful! killall does different things on different unix's! ...RickM... _

Re: [vtcl-user] exit on a unix system.

2000-10-01 Thread Dave Watson
} If I understand your request correctly. Dave - Original Message - From: "Mau, Lawrence" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, August 31, 2000 2:29 PM Subject: [vtcl-user] exit on a unix system. > I can startup unix commands like the

[vtcl-user] exit on a unix system.

2000-10-01 Thread Mau, Lawrence
I can startup unix commands like the one below, but would like an exit button or command for each as well. Could someone give me a pointer. thanks button $base.but21 \ -background #00aed2 -borderwidth 5 \ -command {exec /usr/bin/X11/xterm -e top &} -text {Top Utility Tool} _