symlink

create symbolic link of file to given destination


Parameters

symlink file :string
        destination :string

Attributes

hardcreate a hard link

Returns

  • :nothing

Examples

copy
symlink relative "arturo/README.md" "/Users/drkameleon/Desktop/gotoREADME.md" ; creates a symbolic link to our readme file ; in our desktop

copy
symlink.hard relative "arturo/README.md" "/Users/drkameleon/Desktop/gotoREADME.md" ; hard-links (effectively copies) our readme file ; to our desktop

Related