View in color | View documentation | License | Download script | History |
14-Dec 15:39 UTC
[0.065] 10.616k
[0.065] 10.616k
ftpallto.rREBOL [
Title: "Transfer REBOL Files to Server"
Date: 18-Dec-1997
File: %ftpallto.r
Purpose: {FTP all .r files in the current directory to a server.}
library: [
level: 'beginner
platform: 'all
type: 'Tool
domain: [ftp other-net file-handling]
tested-under: none
support: none
license: none
see-also: none
]
Version: 1.0.0
Author: "Anonymous"
]
ftp-to: ftp://user:%pass--domain--com/examples
foreach file load %./ [
if find/any file "*.r" [
print ["uploading:" file]
write ftp-to/:file read file
]
] Notes
|