Using curl in Windows to download files
This downloads a file if it's newer than the one that's on your local drive:
curl -z "path\filename.lib" ftp://ftp.yoursite.com//ftppath/filename.lib -o "path\filename.lib"
The "-z" means only copy if it's newer than a specified date. But then you ju...
roderickkennedy.com1 min read