Update of /cvsroot/woc/woc/data/wml
In directory usw-pr-cvs1:/tmp/cvs-serv11034
Added Files:
install_source
Log Message:
Added a script that installs the source files which are needed on the
website for:
1. the search script
2. latest changes
3. more?
--- NEW FILE: install_source ---
#! /bin/sh
if test -d ../../web-docs/data/wml;
then
true
else
mkdir -p ../../web-docs/data/wml
fi
cp `find . -name "*xml"` ../../web-docs/data/wml/.
|