Mostly technical stuff with some interesting moments of life
public static String getPid() throws IOException { byte[] bo = new byte[100]; String[] cmd = {"bash", "-c", "echo $PPID"}; Process p = Runtime.getRuntime().exec(cmd); p.getInputStream().read(bo); return new String(bo); }
No comments:
Post a Comment