Rebol Programming/link-relative-path
USAGE:
editLINK-RELATIVE-PATH file
DESCRIPTION:
editRemove link-root from a file path
LINK-RELATIVE-PATH is a function value.
ARGUMENTS:
edit- file -- (Type: any)
SOURCE CODE
editlink-relative-path: func ["Remove link-root from a file path" file /local f][ either f: find/match file link-root [copy f] [file] ]