< Rebol Programming

USAGE:

RUN file /as suffix 

DESCRIPTION:

Runs the system application associated with a file.

RUN is a native value.

ARGUMENTS

  • file -- The file to open (file, URL) or command to run (string). (Type: file url string)

REFINEMENTS

  • /as
    • suffix -- (Type: string file)

SOURCE CODE

run: native[
    {Runs the system application associated with a file.} 
    file [file! url! string!] {The file to open (file, URL) or command to run (string).} 
    /as suffix [string! file!]
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.