Search found 1 match

by delton
Fri Mar 03, 2006 3:40 am
Forum: ZoneMinder Previous Versions
Topic: FTP questions
Replies: 12
Views: 7034

Carbide_tipped wrote:If you find or write a script to remote ftp file management please post. I too need this.
Try this method.

#!/bin/sh
ftp -n localhost <<!
quote user YourUserName
quote pass YourPassword
binary
put file1 file2
quit
!