#!/bin/ksh -p

if [ "$1" != "" -a $2 != "" -a -e $1 -a -e $2 ] ; then
  mv $1 $$flurgl ;
  mv $2 $1 ;
  mv $$flurgl $2 ;
fi
