jjg@2061: #!/bin/bash jjg@1455: # jjg@2061: # Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved. jjg@1455: # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. jjg@1455: # jjg@1455: # This code is free software; you can redistribute it and/or modify it jjg@1455: # under the terms of the GNU General Public License version 2 only, as jjg@1455: # published by the Free Software Foundation. jjg@1455: # jjg@1455: # This code is distributed in the hope that it will be useful, but WITHOUT jjg@1455: # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or jjg@1455: # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License jjg@1455: # version 2 for more details (a copy is included in the LICENSE file that jjg@1455: # accompanied this code). jjg@1455: # jjg@1455: # You should have received a copy of the GNU General Public License version jjg@1455: # 2 along with this work; if not, write to the Free Software Foundation, jjg@1455: # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. jjg@1455: # jjg@1455: # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA jjg@1455: # or visit www.oracle.com if you need additional information or have any jjg@1455: # questions. jjg@1455: # jjg@1455: jjg@1455: # Run the "tidy" program over the files in a directory. jjg@2061: # The "tidy" program must be on your PATH. jjg@1455: # jjg@1455: # Usage: jjg@1455: # sh tidy.sh jjg@1455: # jjg@1455: # The "tidy" program will be run on each HTML file in , jjg@1455: # and the output placed in the corresponding location in a new jjg@1455: # directory .tidy. The console output from running "tidy" will jjg@1455: # be saved in a corresponding file with an additional .tidy extension. jjg@1455: # jjg@1455: # Non-HTML files will be copied without modification from to jjg@1455: # .tidy, so that relative links within the directory tree are jjg@1455: # unaffected. jjg@1455: jjg@1455: dir=$1 jjg@1455: odir=$dir.tidy jjg@1455: jjg@1455: ( cd $dir ; find . -type f ) | \ jjg@1455: while read file ; do jjg@1455: mkdir -p $odir/$(dirname $file) jjg@1455: case $file in jjg@1455: *.html ) jjg@1455: cat $dir/$file | tidy 1>$odir/$file 2>$odir/$file.tidy jjg@1455: ;; jjg@1455: * ) cp $dir/$file $odir/$file jjg@1455: ;; jjg@1455: esac jjg@1455: done