ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/pod/copy_doc
Revision: 1.4
Committed: Thu Nov 22 05:53:43 2012 UTC (11 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-3_1, HEAD
Changes since 1.3: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #!/bin/bash
2
3 if [ "$CFPLUS" = "" ]; then
4 echo "*** No CFPLUS environment variable given, choosing ../../CFPlus/ as default"
5 fi
6
7 : ${CFPLUS:="../../CFPlus/"}
8
9 for i in dmcommand_help.pod command_help.pod; do
10 (
11 echo "=begin comment"
12 echo
13 echo "***"
14 echo "*** WARNING: THIS IS A GENERATED FILE - CHANGES WILL BE LOST"
15 echo "*** The source for this file is in CFPlus/pod/$i"
16 echo "*** Make any changes there and then run ./copy_doc"
17 echo "***"
18 echo
19 echo "=end comment"
20 echo
21 cat "$CFPLUS/pod/$i"
22 ) >"$i"
23 done