How to close a running script in Linux?
After we run the script in Linux, if we want to stop the script, it is not as convenient as in windosw. I summarize the method as follows:
1, search for the script according to the script name The executed process;
ps -ef|grep GenerateMonitorCompanyFinance
2, kill the process according to the process ID;
kill -9 24853
Recommended: "Linux Tutorial"
The above is the detailed content of How to close a running script in linux. For more information, please follow other related articles on the PHP Chinese website!