Compare commits

1 Commits

Author SHA1 Message Date
Sem
7804314d3c WIP maybe convert bash scripts to c? 2026-07-11 23:21:17 +02:00
2 changed files with 10 additions and 0 deletions

BIN
c-scratchbook/main Executable file

Binary file not shown.

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;
}