#!/bin/sh

# helper script to remove 'MPI1' and 'MPI2' from file and directory names
orig=$1
new=` echo $orig | sed -e 's/\.MPI1// ' | sed -e 's/\.MPI2//' `
if [ $orig != $new ] ; then
  mv $orig $new
fi
