#!/bin/sh
j=$(basename $0)
if [ -z "$1" ];then
  echo "$j: Missing filename arg"
  exit 1
fi
mv -iv "$1" "$1.$j"
