builder.inputrc(new File(inputrc));
String historyFile = System.getProperty("aesh.historyfile");
if(historyFile != null && historyFile.length() > 0)
if(new File(historyFile).isFile())
builder.historyFile(new File(historyFile));
String historyPersistent = System.getProperty("aesh.historypersistent");
if(historyPersistent != null && historyPersistent.length() > 0)
if(historyPersistent.equalsIgnoreCase("true") ||
historyPersistent.equalsIgnoreCase("false"))