Command to change file format to pipe delimited and copy to S3 bucket
Hi All
I have the following script that gets the data from FTP server and copy it to my local drive.
What I am looking for is to change the file to a pipe delimited and copy to AWS S3 bucket, can someone please advice.
Thanks
I have the following script that gets the data from FTP server and copy it to my local drive.
option batch on option confirm off open ftp://username:password@FTPSITE/ cd /webpricingFTP/BC option transfer binary get -preservetime *.csv C:\FTPShare\
Thanks