Kill -9 problem in bash file

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












0















I wrote a 2 line bash script file in Centos 6.8



#! /bin/sh
pid= ps -ef | grep -i 'adminserver' | grep -v grep | awk 'print $2'
kill -9 $pid


when I run the script i get the following output:



kill: usage: kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]









share|improve this question
























  • pid=$(ps -ef | grep -i 'adminserve[r]' | awk 'print $2')

    – ctrl-alt-delor
    Feb 6 at 10:32















0















I wrote a 2 line bash script file in Centos 6.8



#! /bin/sh
pid= ps -ef | grep -i 'adminserver' | grep -v grep | awk 'print $2'
kill -9 $pid


when I run the script i get the following output:



kill: usage: kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]









share|improve this question
























  • pid=$(ps -ef | grep -i 'adminserve[r]' | awk 'print $2')

    – ctrl-alt-delor
    Feb 6 at 10:32













0












0








0








I wrote a 2 line bash script file in Centos 6.8



#! /bin/sh
pid= ps -ef | grep -i 'adminserver' | grep -v grep | awk 'print $2'
kill -9 $pid


when I run the script i get the following output:



kill: usage: kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]









share|improve this question
















I wrote a 2 line bash script file in Centos 6.8



#! /bin/sh
pid= ps -ef | grep -i 'adminserver' | grep -v grep | awk 'print $2'
kill -9 $pid


when I run the script i get the following output:



kill: usage: kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]






shell-script kill






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 6 at 10:31









ctrl-alt-delor

11.8k42159




11.8k42159










asked Feb 6 at 8:05









Ali GolestanAli Golestan

91215




91215












  • pid=$(ps -ef | grep -i 'adminserve[r]' | awk 'print $2')

    – ctrl-alt-delor
    Feb 6 at 10:32

















  • pid=$(ps -ef | grep -i 'adminserve[r]' | awk 'print $2')

    – ctrl-alt-delor
    Feb 6 at 10:32
















pid=$(ps -ef | grep -i 'adminserve[r]' | awk 'print $2')

– ctrl-alt-delor
Feb 6 at 10:32





pid=$(ps -ef | grep -i 'adminserve[r]' | awk 'print $2')

– ctrl-alt-delor
Feb 6 at 10:32










1 Answer
1






active

oldest

votes


















3














pid= with a space after it would set the pid variable to an empty string. The rest of that line would simply execute the pipeline and output the result (probably to the terminal unless it's being redirected). Since $pid is empty, kill later complains.



To capture the output of a command, use $(...), e.g.



pid=$( ps -ef | ... )


However, it's better to use pkill for what you're attempting to do:



pkill adminserver


See the pkill manual.



I would also avoid using the KILL signal if at all possible. See e.g. "When should I not kill -9 a process?".






share|improve this answer

























  • thanks for your answer, it worked

    – Ali Golestan
    Feb 6 at 9:58











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f498989%2fkill-9-problem-in-bash-file%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









3














pid= with a space after it would set the pid variable to an empty string. The rest of that line would simply execute the pipeline and output the result (probably to the terminal unless it's being redirected). Since $pid is empty, kill later complains.



To capture the output of a command, use $(...), e.g.



pid=$( ps -ef | ... )


However, it's better to use pkill for what you're attempting to do:



pkill adminserver


See the pkill manual.



I would also avoid using the KILL signal if at all possible. See e.g. "When should I not kill -9 a process?".






share|improve this answer

























  • thanks for your answer, it worked

    – Ali Golestan
    Feb 6 at 9:58
















3














pid= with a space after it would set the pid variable to an empty string. The rest of that line would simply execute the pipeline and output the result (probably to the terminal unless it's being redirected). Since $pid is empty, kill later complains.



To capture the output of a command, use $(...), e.g.



pid=$( ps -ef | ... )


However, it's better to use pkill for what you're attempting to do:



pkill adminserver


See the pkill manual.



I would also avoid using the KILL signal if at all possible. See e.g. "When should I not kill -9 a process?".






share|improve this answer

























  • thanks for your answer, it worked

    – Ali Golestan
    Feb 6 at 9:58














3












3








3







pid= with a space after it would set the pid variable to an empty string. The rest of that line would simply execute the pipeline and output the result (probably to the terminal unless it's being redirected). Since $pid is empty, kill later complains.



To capture the output of a command, use $(...), e.g.



pid=$( ps -ef | ... )


However, it's better to use pkill for what you're attempting to do:



pkill adminserver


See the pkill manual.



I would also avoid using the KILL signal if at all possible. See e.g. "When should I not kill -9 a process?".






share|improve this answer















pid= with a space after it would set the pid variable to an empty string. The rest of that line would simply execute the pipeline and output the result (probably to the terminal unless it's being redirected). Since $pid is empty, kill later complains.



To capture the output of a command, use $(...), e.g.



pid=$( ps -ef | ... )


However, it's better to use pkill for what you're attempting to do:



pkill adminserver


See the pkill manual.



I would also avoid using the KILL signal if at all possible. See e.g. "When should I not kill -9 a process?".







share|improve this answer














share|improve this answer



share|improve this answer








edited Feb 6 at 21:29

























answered Feb 6 at 8:11









KusalanandaKusalananda

133k17253416




133k17253416












  • thanks for your answer, it worked

    – Ali Golestan
    Feb 6 at 9:58


















  • thanks for your answer, it worked

    – Ali Golestan
    Feb 6 at 9:58

















thanks for your answer, it worked

– Ali Golestan
Feb 6 at 9:58






thanks for your answer, it worked

– Ali Golestan
Feb 6 at 9:58


















draft saved

draft discarded
















































Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f498989%2fkill-9-problem-in-bash-file%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown






Popular posts from this blog

Peggy Mitchell

Palaiologos

The Forum (Inglewood, California)