Is it possible to run subprocesses like Far/MidnightCommander (or other terminal app with ncurses/graphical-interface) from java application with ProcessBuilder or somehow other way?
Standart examples with ProcessBuilder works fine with something simple like ping
new ProcessBuilder().command("ping -n 4 google.com").start(); // :)
, but not worked at all with far
new ProcessBuilder().command("far").start(); // :(