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