Search results

  1. T

    How to parse Linux(Ubuntu) PTY bash output data?

    https://en.wikipedia.org/wiki/ANSI_escape_code
  2. T

    How to parse Linux(Ubuntu) PTY bash output data?

    I made two programs that a pty server in Linux and a pty client in windows, They are communicating over TCP/IP. The server program's code like below: server->onBufferReceived = [&mpty](EasyTCP::IConnection* c, EasyTCP::AutoBuffer data) { int ret = write(mpty, data.data()...
  3. T

    How to parse Linux(Ubuntu) PTY bash output data?

    I am making a program to show the Linux(Ubuntu) PTY bash output data on the windows console. But, It doesn't look friendly to show some bytes such as color bytes. Have a protocol document to indicate how to parse it? Thanks.
Top