#!/bin/sh
if [ -e $1.exec.out.tmp ]; then
  sort $1.exec.out.tmp > $1.prediff.tmp
  mv $1.prediff.tmp $1.exec.out.tmp
fi
