source: trunk/documents/UserDoc/UsersGuides/InstallationGuide/print/Execute.pl@ 1318

Last change on this file since 1318 was 1208, checked in by garnier, 16 years ago

CVS update

  • Property svn:executable set to *
File size: 519 bytes
Line 
1#!/usr/bin/perl
2#
3#
4
5$outputFile = 'InstallationGuideMerged.html';
6
7@inputFiles = (
8 '../html/index.html',
9 'break00.html',
10 '../html/Introduction/introduction.html',
11 'break01.html',
12 '../html/UnixMachines/unixMachines.html',
13 'break02.html',
14 '../html/PCMachines/pcMachines.html'
15 );
16
17$numberFiles = @inputFiles;
18
19for ($i=0; $i<$numberFiles; $i++)
20{
21 `MergeDocs.pl $inputFiles[$i] >> $outputFile`;
22}
23
24
25
Note: See TracBrowser for help on using the repository browser.