Skip to content
Snippets Groups Projects
Commit 1c1a8d6d authored by david_williams's avatar david_williams
Browse files

minor changes

parent 5c574a1e
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
. mainparams.shsource
. copyAndRemove.sh
echo;
echo " performing $0";
echo;
# This file is not needed on a regular basis, but was used at one point to get the
# full patch of module names
# first one creates new oldList file, the rest append to it.
find /cvsroot/webtools -name org.eclipse.wst.internet.proxy > oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.internet.proxy.infopop >> oldList.txt
find /cvsroot/webtools -name org.eclipse.jst.common_core.feature >> oldList.txt
find /cvsroot/webtools -name org.eclipse.jst.common_sdk.feature >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common_core.feature >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common_sdk.feature >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common_tests.feature >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common_ui.feature >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common_userdoc.feature >> oldList.txt
find /cvsroot/webtools -name org.eclipse.jem.util >> oldList.txt
find /cvsroot/webtools -name org.eclipse.jst.common.project.facet.core >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.command.env >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.command.env.core >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.command.env.infopop >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.command.env.ui >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.core >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.emf >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.emfworkbench.integration >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.environment >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.frameworks >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.frameworks.ui >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.infopop >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.modulecore >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.project.facet.core >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.project.facet.ui >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.snippets >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.ui >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.ui.properties >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.uriresolver >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.internet.cache >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.validation >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.validation.infopop >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.validation.ui >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.project.facet.core.tests >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.project.facet.ui.tests >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.snippets.tests >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.tests >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.tests.collector >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.tests.performance >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.common.tests.ui >> oldList.txt
find /cvsroot/webtools -name org.eclipse.wst.internet.cache.tests >> oldList.txt
\ No newline at end of file
find ${oldcvsdir} -name org.eclipse.wst.internet.proxy > oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.internet.proxy.infopop >> oldList.txt
find ${oldcvsdir} -name org.eclipse.jst.common_core.feature >> oldList.txt
find ${oldcvsdir} -name org.eclipse.jst.common_sdk.feature >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common_core.feature >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common_sdk.feature >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common_tests.feature >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common_ui.feature >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common_userdoc.feature >> oldList.txt
find ${oldcvsdir} -name org.eclipse.jem.util >> oldList.txt
find ${oldcvsdir} -name org.eclipse.jst.common.project.facet.core >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.command.env >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.command.env.core >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.command.env.infopop >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.command.env.ui >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.core >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.emf >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.emfworkbench.integration >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.environment >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.frameworks >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.frameworks.ui >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.infopop >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.modulecore >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.project.facet.core >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.project.facet.ui >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.snippets >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.ui >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.ui.properties >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.uriresolver >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.internet.cache >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.validation >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.validation.infopop >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.validation.ui >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.project.facet.core.tests >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.project.facet.ui.tests >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.snippets.tests >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.tests >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.tests.collector >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.tests.performance >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.common.tests.ui >> oldList.txt
find ${oldcvsdir} -name org.eclipse.wst.internet.cache.tests >> oldList.txt
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment