
io.soluble.pjb.bridge.LauncherUnix Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of php-java-bridge Show documentation
Show all versions of php-java-bridge Show documentation
PHPJavaBridge server (soluble fork)
The newest version!
package io.soluble.pjb.bridge;
public class LauncherUnix {
private static final String data = "#!/bin/sh\n"+
"# php fcgi launcher\n"+
"#set -x\n"+
"\n"+
"\"$@\" 1>&2 &\n"+
"trap \"kill $! && exit 0;\" 1 2 15\n"+
"read result 1>&2\n"+
"kill $!\n"+
"";
public static final byte[] bytes = data.getBytes();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy