in reply to How to get the absolute path of a symbolic link
Cwd is a core-module so you don't need to install anything extra.
use Cwd qw(abs_path); my $absolute_path = abs_path (readlink $link);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to get the absolute path of a symbolic link
by 2teez (Vicar) on Jun 20, 2012 at 19:58 UTC |