All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.Ostermiller.util.cleansource.sh Maven / Gradle / Ivy

Go to download

Open source (GPL) Java utilities maintained by Stephen Ostermiller with help from many contributors.

The newest version!
for file in *.*.html
do
  baseFile=${file%.*.html}
  prob=`egrep -l "" $file`
  if [ ! -e "../$baseFile.html" ]
  then
	if [ "a$prob" != "a" ]
	then
      mv  "$file" temp
      sed "s//\1/g" temp > $file
	  mv  "$file" temp      
	  sed "s///g" temp > $file
	fi
  fi
  prob=`egrep -l "" $file`
  if [ ! -e "../doc/com/Ostermiller/util/$baseFile.html" ]
  then
	if [ "a$prob" != "a" ]
	then
      mv  "$file" temp
	  sed "s///g" temp > $file
	fi
  fi
done




© 2015 - 2025 Weber Informatics LLC | Privacy Policy