This commit is contained in:
Ren RenJuan 2014-01-19 08:33:16 +00:00
parent 761d2c2503
commit 1b215f1cc6
4 changed files with 15 additions and 8 deletions

Binary file not shown.

Binary file not shown.

View File

@ -291,6 +291,12 @@ void mdCommander::driver() {
clear();
continue;
}
if (!strcmp(rawString,"tkvi")) { char *lastLog="./etc/donutsOTEConnectivity.log";
sprintf(wwork,"vim %s",lastLog);
system(wwork);
clear();
continue;
}
if (!strcmp(rawString,"done")) {
goto done;
}
@ -351,14 +357,15 @@ void mdCommander::help() {
mvprintw(13,10," W<n> - write <n> to ./acInputQueue*");
mvprintw(14,10," X<n> - discard ");
mvprintw(15,10," <n> - make <n> the target device");
mvprintw(16,10," loG - display this cd UI log");
mvprintw(17,10," log - display this cd daemon log*");
mvprintw(18,10," mlog - display the master daemon log");
mvprintw(19,10," done - terminate commander but not process");
mvprintw(20,10," q/quit - end process tree, delete log files");
mvprintw(22,5,"<n> is an integer, above active everywhere outside data entry (>>)");
mvprintw(23,5,"no space before <n>, X0/W0 to delete/write all commands.");
mvprintw(24,5,"*will be inaccessible if another user running cd on this computer.");
mvprintw(16,10," loG - cd UI log");
mvprintw(17,10," log - cd daemon log*");
mvprintw(18,10," mlog - master daemon log");
mvprintw(19,10," tkvi - vim/xmledit last tk log (path hardcoded)");
mvprintw(20,10," done - terminate commander but not process");
mvprintw(21,10," q/quit - end process tree, delete log files");
mvprintw(23,5,"<n> is an integer, above active everywhere outside data entry (>>)");
mvprintw(24,5,"no space before <n>, X0/W0 to delete/write all commands.");
mvprintw(25,5,"*will be inaccessible if another user running cd on this computer.");
mvprintw(row-2,1,"%s",prompt);
refresh();

Binary file not shown.