A web development/programming blog providing info, tips, and tricks on programming languages, scripting, Linux, MySQL and more
ftp Cheat Sheet
- ftp server
- Make an ftp connection to server
- ls
- List files on the remote system
- cd directory
- Change the working to directory to directory
- ASCII | binary
- Set the transfer mode to ASCII or binary
- get filename
- Copy filename from the remote system to the local system
- mget files
- Copy multiple files from the remote system to the local system. You can also use strings and regex to select files to get.
- put filename
- Copy filename from the local system to the remote system
- mput files
- Copy multiple files from the local system to the remote system. You can also use strings and regex to select files to get.
- quit | bye
- Disonnect

