I am trying to write a script that finds directories that are symbolically linked to accounts and then displays where that symbolic link is.
Is there a function of perl that displays where directories are linked?
I just want to avoid using something like:
open (SYMDIR, "cd /some/directory | pwd |");
print SYMDIR;
Well, actually there are other ways than that...
But anyway, any help would be appreciated =)