diff --git a/c-scratchbook/main b/c-scratchbook/main new file mode 100755 index 0000000..d5eaf30 Binary files /dev/null and b/c-scratchbook/main differ diff --git a/c-scratchbook/run-backup.c b/c-scratchbook/run-backup.c new file mode 100644 index 0000000..5c68799 --- /dev/null +++ b/c-scratchbook/run-backup.c @@ -0,0 +1,10 @@ +#include +#include + +int main(int argc, char *argv[]) { + + int rsync_res = system("rsync"); + printf("%s", rsync_res); + + return 0; +} \ No newline at end of file