#! /usr/bin/bash

# A dummy "ln" function to make links real.

if [ x"$1" = x"-s" ]; then
	shift
fi

cp -pfR "$1" "$2"
