I apologize, I must have jumped a gear, or slipped a cog. FTP is a utility that interprets a set of specific commands for ftp management: file listing, transfer, local and remote directory-changes, etc. If you type "?" at the FTP prompt (FTP>), you can see all the available commands displayed. For a (very brief) description of any given command, f/e: "get", type "? get". I have always edited my html and associated files locally. If you need to modify an existing page from the web, just "GET" the file, edit (using notepad or EDIT), then "PUT" the file back in place. (VERY important, unix IS case sensitive. ME.txt will not be recognized if you type me.TXT for any operation.) FTP -? will regale you with command-line options, and one of the best is -s (script), which allows for scripted (non-interactive) operation, such as I use for my "login" script( login.bat):ftp -n -s login.bat goto :eof open pages.suddenlink.net user abc defghij cd subpage ::==== end batchscript (I merged the batch and the ftp scripts to reduce garbage. The batchscript is also the ftp script, since errors are ignored.) The item after "user" is the password. Everything after that depends on what you want to do. When the ftp script runs out, it reverts to interactive, so always put a "quit" command if you want it fully automated. I am not aware of "ftp editing software", but that's just me. There are html-specific editors, such as "frontpage", "dreamweaver" etc, for page-design. Once again, imo, always edit locally: download, fix, upload. There's no need to directly edit the server-content (which I've done, using unix' VI on Telnet, which you DON'T want to do if you're sane.) sorry for long message. hope this helps
|