就像是:
kill -9 <read pid from file>
我试过了:
kill -9 `more pid`
但它不起作用.我也试过xargs但是无法理解它.
kill -9 $(cat pid)
为你工作?