in reply to brain re-engaging perl mode
symlink is not implemented on all platforms, to make your code more portable, do something like this:
if (eval { symlink("",""); 1 }) { symlink "a", "b"; } else { print "symlink is not implemented\n"; } [download]