#!/bin/sh
# FTP fetch
ftp -n << 'EOF'
open ftp.verisign-grs.com
user direct W3B2d4$7
cd core
mget *billing* /backup/billing.reports
bye
EOF
Thursday, January 20, 2005
Auto Ftp download and deletion
Subscribe to:
Posts (Atom)
"The only constant in this world is change "
#!/bin/sh
# FTP fetch
ftp -n << 'EOF'
open ftp.verisign-grs.com
user direct W3B2d4$7
cd core
mget *billing* /backup/billing.reports
bye
EOF