#!perl

use strict;
use warnings;
use File::Copy::Link qw(safecopylink);
my $VERSION = $File::Copy::Link::VERSION;

for my $file (@ARGV) {
    safecopylink $file;
}

# $Id$
