Shell programming implements kill thread __ programming

Source: Internet
Author: User
[Root@centos65 liumengyang]# cat test.sh
#!/bin/sh
#if The process Exists,kill it
pid=$ (Ps-ef|grep java| awk ' {print $} ')
pidname=$ (ps-ef|grep java|grep-v ' grep ' |awk ' {print} ')
#judge If the process is Running.if Not,restart.
If [$pidname]
then
echo "The process is running ..."
else
echo "The process is not existing ..."
Fi


(1) The role of the grep-v ' grep ' command is to worry about the grep process

(2) Assign the output value of the command to the variable pid pid=$ (ps-ef|grep Java|awk ' {print $} ')

(3) The awk ' {print '} command is the form of dividing a line of text into an array by a space and then using ' value '.

For example, "Liu Meng Yang" after the awk word, ' corresponding to ' Liu ', ' $ ' corresponds to ' Meng ', ' $ ' corresponds to ' yang '

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.