I'm looking for some kind of backup/version-control method for a legacy system:
- Systems are developed in a version of BASIC. It's an interpreted version. Programs are saved in some pseudo-code; not pure text.
- All production programs are stored in the same folder tree, divided into folders depending on the category.
- No subversion strategy, apart from storing the previous version of the program being modified into a subfolder named old_versions. There is one old_versions subfolder within every category folder. Example: /programs/accounts_payable/old_versions/
- Programs are modified on the fly, in the production environment.
- System run on a Solaris server
I would like some method of real-time backup of, every program modified, stored in a separate location. Nothing fancy. It doesn't need to do rollbacks or change-comparisons. It just needs to SAVE THE MOST RECENT VERSION OF THE PROGRAM.
Thanks.
PS: Yes, I'm really angry and desperate.