dont require single process match for fversion
This commit is contained in:
parent
81a19482a0
commit
109c6354bd
|
@ -50,16 +50,19 @@ public class FileVersionInfo extends SigarCommandBase {
|
||||||
public void output(String[] args) throws SigarException {
|
public void output(String[] args) throws SigarException {
|
||||||
for (int i=0; i<args.length; i++) {
|
for (int i=0; i<args.length; i++) {
|
||||||
String exe = args[i];
|
String exe = args[i];
|
||||||
if (!new File(exe).exists()) {
|
if (new File(exe).exists()) {
|
||||||
try {
|
output(exe);
|
||||||
exe = sigar.getProcExe(exe).getName();
|
}
|
||||||
} catch (SigarException e) {
|
else {
|
||||||
println(exe + ": " + e.getMessage());
|
long[] pids = this.shell.findPids(exe);
|
||||||
continue;
|
for (int j=0; j<pids.length; j++) {
|
||||||
|
try {
|
||||||
|
output(sigar.getProcExe(pids[j]).getName());
|
||||||
|
} catch (SigarException e) {
|
||||||
|
println(exe + ": " + e.getMessage());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
output(exe);
|
|
||||||
println("\n------------------------\n");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue