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
> 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
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...
_
}
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
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}
_