I am trying to download files in one session instead of multiple sessions when I have multiple extensions.
For example, I currently do this from a batch file to get *.txt and *.asc:
coreftp -O -d /sys/*.txt -site new -p c:\new\
coreftp -O -d /sys/*.asc -site new -p c:\new\
This loads the site "new", downloads *.txt then disconnects. Then reconnect to download the *.asc files.
I would like to download both the *.txt and *.asc on the first connection.
Any suggestions?