summaryrefslogtreecommitdiff
path: root/noncore/tools/opie-sh/scripts/killproc.sh
Side-by-side diff
Diffstat (limited to 'noncore/tools/opie-sh/scripts/killproc.sh') (more/less context) (ignore whitespace changes)
-rwxr-xr-xnoncore/tools/opie-sh/scripts/killproc.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/noncore/tools/opie-sh/scripts/killproc.sh b/noncore/tools/opie-sh/scripts/killproc.sh
index 8afb4b8..6380200 100755
--- a/noncore/tools/opie-sh/scripts/killproc.sh
+++ b/noncore/tools/opie-sh/scripts/killproc.sh
@@ -9,31 +9,31 @@
# 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
+OPIE_SH=$OPIEDIR/bin/opie-sh
######################################################################
# subroutines
about() {
- ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/killproc.png>"
+ ( echo "<img src=$OPIEDIR/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() {
@@ -51,21 +51,21 @@ select_process() {
-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 "<img src=$OPIEDIR/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