summaryrefslogtreecommitdiffstats
path: root/scripts/kdekillall
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:31:55 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:31:55 -0600
commit78a14fe575048e318a9c4403cb42060b17946883 (patch)
treec3f3c4d9a229752bb371ccbd45ec3f488276a950 /scripts/kdekillall
parentbd3922c07c6753c5cb6ceeb6df8c6edae1183d2d (diff)
downloadtdesdk-78a14fe575048e318a9c4403cb42060b17946883.tar.gz
tdesdk-78a14fe575048e318a9c4403cb42060b17946883.zip
Additional kde to tde renaming
Diffstat (limited to 'scripts/kdekillall')
-rwxr-xr-xscripts/kdekillall6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/kdekillall b/scripts/kdekillall
index c08b2ad8..69c39c4f 100755
--- a/scripts/kdekillall
+++ b/scripts/kdekillall
@@ -5,7 +5,7 @@ case $1 in
esac
if [ $# = 0 ]; then
echo "Usage: $0 [-<signal>] <process>"
- echo 'Kills the process "kdeinit: <process> with signal <signal>"'
+ echo 'Kills the process "tdeinit: <process> with signal <signal>"'
echo "if <signal> is not specified, it defaults to SIGTERM,"
echo "see kill -l for a list of possible Q_SIGNALS"
else
@@ -13,11 +13,11 @@ else
if test -z "$list"; then
# on newer Linux kernels (>= 2.6.10) KDE is able to use
# prctl(PR_SET_NAME) to change the process name...
- list=$(ps auwx | grep $USER | awk "/\[kdeinit\] $1/ {print \$2}")
+ list=$(ps auwx | grep $USER | awk "/\[tdeinit\] $1/ {print \$2}")
fi
if test -z "$list"; then
# with KDE 3.4 we changed the view again...
- list=$(ps auwx | grep $USER | awk "/$1 \[kdeinit\]/ {print \$2}")
+ list=$(ps auwx | grep $USER | awk "/$1 \[tdeinit\]/ {print \$2}")
fi
if test -n "$list"; then
kill $signal $list