private final InputStreamReader replayReader;
public UnixTerminal() throws Exception {
super(true);
this.replayStream = new ReplayPrefixOneCharInputStream(Configuration.getInputEncoding());
this.replayReader = new InputStreamReader(replayStream, replayStream.getEncoding());
}