개발시 사용하면 편리한 프로그램
1.Tuxedo 관리자 이외의 Login-ID로 "tmboot, tmshutdown"을 실행 - 프로그램명 : tmstart, tmstop - 프로그램 source 화일 #include <stdio.h> int main(int argc, char *argv[]) { char cmdstr[1024]; int i = 0; memset(cmdstr, 0x00, sizeof(cmdstr)); if (strcmp(argv[0], "tmstart") == 0) { strcpy(cmdstr, "tmboot "); } else if (strcmp(argv[0], "tmstop") == 0) { strcpy(cmdstr, "tmshu..