문제

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

도움이 되었습니까?

해결책

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.

다른 팁

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/

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top