我如何每1秒运行一次cron?默认情况下只有分钟选项
int main( int argc,char ** argv ) { while (1) { // do the work sleep(1000); } }
这可行吗?