使用 supervisor 服务,将程序监控起来,如果程序挂掉了,可以实现自启动
编写 c++ 程序 test.c
#include <stdio.h> #include <string.h> int main(){ FILE *fp = fopen("./1.txt","a+"); if(fp==0){ printf("can't open file "); return 0; } int ix = 0; for(;;ix++){ fseek(fp,0,SEEK_END); char s_add_arr[10]; memset(s_add_arr,'