FTP mv command
I've small ftp script. it logins into remote FTP box and download
files using mget command.
I need to move the logfiles to other directoryfrom remote ftp as soon
as my "mget" command done. I've tried mv command using both ftp /
lftp but its not working. All i want is something as follows on remote
box
ftp> lcd /home/me/log/
ftp> mget *.log
ftp> mv *.log old/ <-------- this is not working
any is really appricated
|