changes the package names of java classes.
For example, if you have a bunch of java files in a package and you need to move them to a new package.
For example, if you have a bunch of java files in a package and you need to move them to a new package.
#!/bin/sh for file in `ls *.java` do sed -e "s/old.package.name/new.package.name/" $file > /tmp/tempfile.tmp mv /tmp/tempfile.tmp $file done