banan-os/userspace/aoc2024/full/main.cpp

23 lines
309 B
C++
Raw Permalink Normal View History

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