답변:
ftp hostname
또는
ftp://username:password@hostname
이제 연결되면 가장 일반적인 5 가지 옵션은 다음과 같습니다.
cd foldername #e.g. cd /downloads/recent
get filename #e.g. get thisisthefileiwant.text
put filename #e.g. put sendthistotheserver.txt
mget filenameregex #e.g mget * to get every file in a directory
mput filemameregex #e.g. mput *.txt to upload every txt file to the server
유일한 속임수는 때때로 바이너리를 입력하여 바이너리 모드로 전환해야 할 수도 있습니다
종료하려면 bye를 입력하십시오
내 솔루션과 @grgarside 솔루션의 차이점은 open을 사용하여 Finder에 포크하는 반면, 내 터미널은 터미널을 사용합니다.
나는이 주제가 조용하다는 것을 알고 있지만 우연히 발견했으며 다른 누군가 도이 사이트를 방문 할 것입니다. High Sierra 이상에서는 ftp 명령이 더 이상 작동하지 않습니다. https://discussions.apple.com/thread/8095899
ftp
open ftp://username:password@hostname
이들은 두 개의 별도 명령입니다. open 명령은 ftp 내에서 실행됩니다.
get
명령 을 사용할 때 파일을 어디에서 다운로드 했습니까?