public void parseCommand(String command) {
String tokens[] = command.split(" ");
try {
Command cmd = vault.getCommandObject(tokens[0], path);
Response response = cmd.execCommand(tokens);
this.path = cmd.getPath();
if (response.isOk()) {
for (String string : response.getLines()) {
System.out.println(string);
}