How would I go about creating a local terminal in textarea type of app in javafx. Thank you in advance!
try {
String[] comm = new String[] {"/bin/bash", "-c", "open -a Terminal \"`pwd`\""};
Runtime.getRuntime().exec(comm);
}
catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
