Perl in a Nutshell

Perl in a NutshellSearch this book
Previous: Reference: readlineChapter 5
Function Reference
Next: Reference: readpipe
 

readlink

readlink name

Returns the name of a file pointed to by the symbolic link name. name should evaluate to a filename, the last component of which is a symbolic link. If it is not a symbolic link, or if symbolic links are not implemented, or if some system error occurs, the undefined value is returned, and you should check the error code in $!. If name is omitted, the function uses $_.


Previous: Reference: readlinePerl in a NutshellNext: Reference: readpipe
Reference: readlineBook IndexReference: readpipe