You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
630 B
25 lines
630 B
#!/bin/sh
|
|
# Copyright (C) 2004, International Business Machines Corporation
|
|
# and others. All Rights Reserved.
|
|
#
|
|
# Run this in locale/tools and it will create a sidewaysview in ../vetting/sideways
|
|
|
|
backup_tree()
|
|
{
|
|
TREE=$1
|
|
rm -rf ${TREE}.backup1
|
|
mv ${TREE}.backup0 ${TREE}.backup1
|
|
mv ${TREE} ${TREE}.backup1
|
|
}
|
|
|
|
cd ../diff
|
|
backup_tree cleaned
|
|
mkdir cleaned
|
|
mkdir cleaned/by_type
|
|
#MATCH="-m '.*[mM][tT].*'"
|
|
#MATCH="-m '.*[mM][tT].*'"
|
|
GenerateSidewaysView -z "x-cockney" -s ../common/main/ -d cleaned/ -t ../../../J/icu4j/src/com/ibm/icu/dev/tool/cldr/
|
|
set -x
|
|
rm -f by_type/*.html
|
|
cp cleaned/by_type/*.html by_type/
|