The link function creates a hard link on UNIX systems. : link « File « Perl






The link function creates a hard link on UNIX systems.

   

#Format: link(OLDFILENAME, NEWFILENAME);

$ perl -e 'link("dodo", "newdodo");'

   
    
    
  

Related examples in the same category