Go to the first, previous, next, last section, table of contents.

symlink

`symlink(OLDFILE,NEWFILE)'
OLDFILE にシンボリックリンクされた NEWFILE を作成する。 成功すれば 1、それ以外では 0 を返す。 シンボリックリンクをサポートしないシステムでは、実行時に致命的エラーとなる。 それをチェックするには、eval を用いる。
$symlink_exists = (eval	'symlink("","");', $@ eq ");

Go to the first, previous, next, last section, table of contents.