Question

I Simply searching for a simple application in Linux/Java that i can schedule copying of files/folders at specified Hour of night....

Was it helpful?

Solution

Just set it up as a scheduled cron job.

http://en.wikipedia.org/wiki/Crontab

The scheduled job can then run a simple shell script with the copy/etc commands.

OTHER TIPS

You can use a cronjob http://unixhelp.ed.ac.uk/CGI/man-cgi?crontab+5

This would run 5 minutes after midnight every day crontab -e

5 0 * * * cp /dir/* tmp/dir/

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top