Hiya,
Problem background
I have a post-commit script for my SVN repository which archives & backs up the incremental dumpfiles when a checkin is made.
I'd like to update this to make an off-site backup, however the off-site copy could take a few minutes to complete if the checkin is large.
Question
Is it possible in a UNIX bash script to perform this copy in a thread that returns immediately, performing the action in the background?
Cheers for any help!