>From: George Gallen [mailto:[EMAIL PROTECTED] >they would intresting to see. Either offlist or onlist.
it's basically the same as using ftp. a get program seems redundant - if you have samba installed windows clients just drop the files into a share. here's a snippet i use for puts: DO.SMB: FTP.REC="cd ":REMOTEDIR FTP.REC<-1>="put ":FILE FTP.REC<-1>="quit" WRITE FTP.REC ON HOME.F, "FTP.SCRIPT" PRINT "SMBing to ":ADDRESS E="!echo '(cd ":LOCALDIR:" ; smbclient ":ADDRESS: E:=" NTpassword -U NTuser < ~/FTP.SCRIPT)' | ksh" EXECUTE E RETURN the nonsense with "(cd blah; blah) | ksh" would be better using "lcd" in the script to change local directory, but it works so i'm not going to touch it :-) -- u2-users mailing list [EMAIL PROTECTED] http://www.oliver.com/mailman/listinfo/u2-users
