All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.soluble.pjb.bridge.LauncherUnix Maven / Gradle / Ivy

There is a newer version: 7.1.3
Show 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 - 2024 Weber Informatics LLC | Privacy Policy