#!/usr/bin/env bash

if [[ $# -eq 1 && -L $1 ]]
then
  cpln $1 /tmp
  rm $1
  mv /tmp/$1 .
else
  /bin/touch $*
fi
