Terminal (Mac)

By Nick Landis on Sunday Mar, 25th 2012

Open the Terminal (HD>Applications>Utilities>Terminal) Navigate to the location the files are or where you would like them downloaded. Command: cd Desktop Open an FTP connection. Command: ftp domainname.net Provide your user name (case sensitive) and password (case sensitive and won't see it when you type it). Set the connection to binary transfer Command: binary Send or receive files. Send command: put filename.ext Receive command: get filename.ext Log out of your session. Command: quit Close the Terminal. Commonly used FTP commands: ls: directory listing equivalent to dir. ls -l: long directory listing, more detail. pwd: display the name of current directory. cd: change directory. lcd: change the local current directory. get: to download the file from the FTP server. put: to transfer file and place it on the FTP server. mget: to download multiple files from the FTP server. mput: to transfer multiple files to the FTP server. prompt: to turn on/off interactive mode. binary: to turn on binary mode. ascii: to turn on ascii mode. delete: to turn a file on FTP server. status: to display how the current FTP session is configured. mkdir: to make directory on FTP server. quit/close/bye/disconnect: to disconnect from the FTP server. All FTP commands are case sensitive and should be in lower case.

Tags