In powershell, is there a difference between:
ps theProcessName* | kill
and
kill -processname theProcessName*
Thanks
|
In powershell, is there a difference between:
and
Thanks |
||||
|
|
|
Effectively, the answer is "no."
The only difference is how the commands work on the backend. For Short answer: they will both perform the same task. the straight |
|||
|
|
|
Well, "ps processname" doesn't do anything. And "kill -p" doesn't kill. It prints. |
|||