터미널에서 FTP 서버에 연결하려면 어떻게해야합니까? 명령은 무엇입니까? 예 : ssh 서버 :
ssh [email protected]
Answer
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로 포크하는 것입니다. 내 것은 터미널을 사용합니다.
Comments
답변
ftp open ftp://username:password@hostname
다음 두 개의 개별 명령입니다. 열기 명령은 ftp 내에서 실행됩니다.
설명
- 사용자 = cp의 한 사용자 이름, 암호 =이 사용자의 암호 및 호스트 이름 = 연결하려는 컴퓨터의 IP 주소?
- @blackcornail 예, 맞습니다
답변
이 주제가 조용하다는 것을 알고 있지만 우연히 발견하여 다른 사람도이 사이트를 방문 할 것입니다. ftp 명령은 High Sierra 이상에서 더 이상 작동하지 않습니다. https://discussions.apple.com/thread/8095899
get
명령?