summaryrefslogtreecommitdiff
path: root/noncore/tools/opie-sh/scripts/killproc.sh
blob: 8afb4b83c52e92ab45970fa4683ce7fcb7cdddd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/bin/sh

# killproc.sh - a demonstration of opie-sh
#
# Copyright (C) 2002 gonz@directbox.com
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# 20020524-1 - code optix
# 20020519-1 - added icon to output
# 20020517-1 - nicer fullscreen, added about, tried icon

OPIE_SH=/opt/QtPalmtop/bin/opie-sh

######################################################################
# subroutines

about() {
	( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/killproc.png>"
	  echo "<h3>About</h3>"
	  echo "This little util sends the TERM signal "
	  echo "to the specified process or process group. "
	  echo "The TERM signal will kill processes which  "
	  echo "do not catch this signal. "
	  echo "<p> "
        )  | $OPIE_SH -t opie-killproc -f  &
	SCREENCLEAN=$!
	sleep 1
}

cleanup() {
	kill  $SCREENCLEAN
	rm -f /tmp/qcop-msg-killproc.sh
}

select_process() {
        # present process list and choose
        #
	PROCESS=`ps -eaf | cut -b 10-15,40- 	\
                         | cut -b -40  		\
                         | grep -v "TIME CMD" 	\
                         | $OPIE_SH -i -l -g   	\
                                  -t "Select Process" `
}

######################################################################
# main

about
select_process

PROCESS=`echo $PROCESS | cut -b -4`


( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/killproc.png>"
  echo "<h3>Output of kill $PROCESS</h3>"
  echo "<pre>"
  kill $PROCESS 2>&1
  echo "</pre><p>"
  echo done.
) | $OPIE_SH -f

cleanup