If there is any requirement for transferring files from UNIX to Window shared path and vice versa through FTP,
Please use the below commands for achieving this
UNIX to Windows Shared path:
cd <Local UNIX directory where Input files are available>
ftp -n <<EOF
open <FTP Server Name>
user <FTP User Name> <FTP Password>
cd <Windows Shared path where you want to copy the files>
mput <File Name*>
EOF
Windows Shared path to UNIX:
cd < Local UNIX directory where you want to copy the files >
ftp -n <<EOF
open <FTP Server Name>
user <FTP User Name> <FTP Password>
cd <Windows Shared path where the Input files are available>
mget <File Name*>
EOF
Best Regards,
Moorthy. G