WIP maybe convert bash scripts to c?

This commit is contained in:
Sem
2026-07-11 23:21:17 +02:00
parent f7cc6ba83b
commit 7804314d3c
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#include <stdlib.h>
#include <stdio.h>
int main(int argc, char *argv[]) {
int rsync_res = system("rsync");
printf("%s", rsync_res);
return 0;
}