REBOL [
    Title:   "Update from WWW.REBOL.COM"
    Date:    12-Oct-1998
    File:    %update.r
    Purpose: {
        Updates your rebol.r and reboldoc.r files from the web.
    }
    Category: [web net 1] 
]

site: http://www.rebol.com/

updates: [%rebol.r %reboldoc.r %experts.html]

foreach file updates [
    print ["Reading:" site/:file]
    write file read site/:file
]