jadb icon indicating copy to clipboard operation
jadb copied to clipboard

Is it possible to support exec-out ?

Open Ryanznoco opened this issue 3 years ago • 1 comments

How can I implement exec-out, just like this ?

public InputStream executeOut(String command, String... args) throws IOException, JadbException {
    Transport transport = getTransport();
    StringBuilder shellLine = buildCmdLine(command, args);
    send(transport, "exec-out:" + shellLine.toString());
    return new BufferedInputStream(transport.getInputStream());
}

Ryanznoco avatar Nov 23 '22 17:11 Ryanznoco

I don't understand what you want. What is exec-out? Please link to any official sources.

vidstige avatar Mar 11 '23 08:03 vidstige