XPKeygen/auto2003.c
Pedro Loures ea4689c791
Add Files
2023-04-08 14:47:59 -03:00

13 lines
216 B
C

#include <stdio.h>
#include <stdlib.h>
int main()
{
int numero = 1;
char cmd[300];
while (numero < 1001){
sprintf(cmd, "./server2003 > %d.txt", numero, numero);
system(cmd);
numero=numero+1;
}
}