Documentation Guide v2

Gavin Henry ghenry at suretecsystems.com
Mon Apr 25 18:31:37 UTC 2005


On Monday 25 Apr 2005 14:56, Tommy Reynolds wrote:
> Uttered "Paul W. Frields" <stickster at gmail.com>, spake thus:
> > You're definitely "on call" for that part... I added it to my Wiki
> > notes.
>
> Should be a no-brainer:
>
> #!/bin/sh
> # Where are we playing?
> sandbox="$1"
> repo=${sandbox}/Repo,man
> # Create necessary infrastructure
> mkdir -p ${repo}
> cd ${sandbox}
> cvs -d ${repo} init
> # Populate with FDP essentials
> for x in documentation-guide example-tutorial
> do
> 	cvs -d :pserver:anonymous at rhlinux.redhat.com:/usr/local/CVS co \
> 		-d ${x}-tmp ${x}
> 	find ${x}-tmp -name CVS -print | xargs rm -rf
> 	(
> 		cd ${x}-tmp
> 		cvs -d ${repo} import -m"Imported ${x}" ${x} fdp-sandbox initial
> 	)
> 	cvs -d ${repo} co ${x}
> 	rm -rf ${x}-tmp
> done
> # All's well that ends well.
>
>
> is all that's needed, except for error checking.

Yes, as with most scripts this comes last ;-)

>
> Cheers

-- 
Kind Regards,

Gavin Henry.
Managing Director.

T +44 (0) 1224 279484
M +44 (0) 7930 323266
F +44 (0) 1224 742001
E ghenry at suretecsystems.com

Open Source. Open Solutions(tm).

http://www.suretecsystems.com/




More information about the docs mailing list