br = new BufferedReader(new InputStreamReader(System.in));
isStdin = true;
}
// Check for history commands
answer = history.handleHistory(answer);
// If we have a 'real' command, dispatch it
if (!answer.startsWith("!")) {
String[] tokens = tokenize(answer);
if (tokens.length > 0) {