
#!/bin/sh
# File	: update_proc_ssh_input.sh
# Subject	: Script to update (move) proc_ssh_input.sh from /tmp/
PGM=`basename $0|cut -d\. -f1`
VER="0.1"

FILE="/tmp/proc_ssh_input.sh"

if [ -f ${FILE} ]; then
  cp ${FILE} ${HOME}/bin/
  if [ $? -eq 0 ]; then
    echo "  ${FILE} is copied. It will be removed ..."  
    rm ${FILE}
  fi
else
  echo "  ${FILE} is NOT found"
fi


exit 0

