2024-12-01 02:47:01 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
for (int i = 1; i <= 25; i++)
|
|
|
|
{
|
|
|
|
char command[128];
|
2024-12-01 07:58:03 +02:00
|
|
|
sprintf(command, "/bin/aoc2024/aoc2024_day%d", i);
|
2024-12-01 02:47:01 +02:00
|
|
|
|
|
|
|
struct stat st;
|
|
|
|
if (stat(command, &st) == -1)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
printf("day%d\n", i);
|
|
|
|
|
|
|
|
system(command);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|