I've felt for a while we need something parallel to wget where you just specify a URL! of what you want and it writes it.
Calling it wget or curl would come with expectations that it would have all the options of those programs (I think we could/should make variadic WGET and CURL functions that emulate a useful subset of those options!)
Is there a good name for a simpler arity-1 function that just does the above?
xxx: func [filename [file! url!]] [
write (second split-path filename) (read filename)
]