You might not have permission to delete files.
On a Linux server, it could be either:
1. You are not listed as the "owner" of the FTP file -- then you'd need to "chown" or change ownership
2. That you don't have the permissions to delete -- then you'd need to "chmod" the file if possible
mdelete is a command to delete files over FTP. Whether or not it's a valid script command would depend on the scripting language.
BYE = Disconnect the FTP session
bye or quit
by using BYE
A number of people in answering a similar question are saying to use the BYE command
Delete command is a DML. Syntax of delete command is delete from table_name where <>; It is to delete content of table.
I would try 'exit'.
bye or quit BYE - Disconnect the FTP session Found in A+ Guide to managing and maintaing you PC pg. 979
delete command would delete selected word,line, paragraph or even sheet. Whereas delete sheet command would delete the whole sheet
del *.*
Delete column
Most Linux systems will have ftp available as a command line option. Try entering "man ftp" in terminal mode to make sure you have it, and to learn the various ftp commands. Typically, you will have to know the ftp site name and the user name and password assigned to you for that ftp site. You will start the ftp session by typing something like: ftp www.mysite.net At the ftp prompt, enter your user name and password, if the server requests that you sign in anonymously place "anonymous" or "ftp" in the username field and leave the password field blank. Then use the ftp commands (e.g 'ls' 'put' 'get' 'cd' 'chmod') to transfer and maintain files at your site. If you prefer a GUI interface, there may be some X Windows ftp clients available for download. Google 'ftp Linux' and see what you can find. I prefer the plain command line version. Much quicker and easier once you learn the commands.