An open API service indexing awesome lists of open source software.

https://github.com/dnmfarrell/filecopy

A C daemon that monitors a directory and copies files to a target directory
https://github.com/dnmfarrell/filecopy

Last synced: 8 months ago
JSON representation

A C daemon that monitors a directory and copies files to a target directory

Awesome Lists containing this project

README

          

FileCopy
========

A C daemon that monitors a directory, copying any file placed there to a target directory. Source and target directories are configurable with command line args.

Synopsis
--------

$ filecopy /home/myusername/directorytowatch /home/myusername/directorytocopy

Compiling
---------

Compile with gcc:

$ gcc src/filecopy.c -obin/filecopy

Set execute permissions:

$ chmod +x bin/filecopy