I have a file management process that I need some input on. I'm not sure what's the best approach for this. Here is the basic process flow:
1) Files are created from mulitple servers in:
/dmp/stage/<date>
/dmp/stage/20110329
/dmp/stage/20110330
2) When the file process creation is complete, then copy files from the most current dir /dmp/stage/20110330 to a final directory of /dmp/FINAL
Would it be better to cp the files? or create like a symlink directory for this kind of process?
What is a best practice way for this kind of file management?
I am trying to do this in either shell or perl.
Thanks.