Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
oai
openairinterface5G
Commits
300fc152
Commit
300fc152
authored
Aug 24, 2016
by
Rohit Gupta
Browse files
kill programs only if they exist to avoid kill signal to main python script
parent
4b6f4573
Changes
1
Hide whitespace changes
Inline
Side-by-side
cmake_targets/autotests/tools/remove_old_programs.bash
View file @
300fc152
...
...
@@ -13,7 +13,11 @@ pid="$$"
echo
"pid =
$pid
"
echo
"Killing programs now..."
ps
-aux
|grep
-E
-i
$1
|awk
'{print $2}'
|
tr
'\n'
' '
|
sed
"s/
$pid
/ /"
|
sudo
xargs
kill
-9
var
=
`
ps
-aux
|grep
-E
-i
$1
|awk
'{print $2}'
|
tr
'\n'
' '
|
sed
"s/
$pid
/ /"
`
echo
$var
if
[
-n
"
$var
"
]
;
then
sudo kill
-9
$var
;
fi
#| sudo xargs kill -9
echo
"checking for old programs..."
var
=
`
ps
-aux
|grep
-E
-i
'$1'
|grep
-Ev
'grep'
|
grep
-Ev
'$filename'
`
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment