Advertisement
Guest User

Untitled

a guest
Oct 25th, 2011
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. # Automatically abort script on errors
  2. option batch abort
  3. # Disable overwrite confirmations that conflict with the previous
  4. option confirm off
  5. # Connect using a password
  6. open username:password@ftps.site.com
  7. # Force binary mode transfer
  8. option transfer binary
  9. # Download file to the local directory d:\
  10. get REDEMPTION_TC_*.txt c:\temp\
  11. # Disconnect
  12. close
  13.  
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement