The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Vulcan::Symlink - manipulate symbolic links

SYNOPSIS

use Vulcan::Symlink;

my $link = Vulcan::Symlink->new
(
    link => 'foo.bar',
    root => '/foo/bar', ## optional
);

my %link = $link->make( path => 'foo.real', chown => 'web:web' )->check;