Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
sudo killall javaEclipse プロセスではなく" " に適した手法は何ですか?
sudo killall java
私はgrepクラスパス上でテクニックを試しましたが、私が試したものはすべて面倒です。
grep
プロセス ツリーを表示できる ProcExplorer を使用すると、powershell からプロセスの作成時間を簡単に取得できます。
$a = gwmi win32_process -computername localhost | ? { $_.name -eq "java.exe" } $a | % { $_.ConvertToDateTime( $_.CreationDate )}