본문 바로가기

프로젝트 설정/기타

[FTP] FTP 서버 연결하기 (client)

반응형

ubuntu 20.04

#!/bin/bash
sudo apt install curlftpfs
sudo curlftpfs ftp://"id":"pw"@address:port/server_file_address /client_file_address -o option

# example
sudo curlftpfs ftp://"test":"test123"@127.0.0.1:21/user/test /testuser/ -o allow_other

 

반응형

'프로젝트 설정 > 기타' 카테고리의 다른 글

[iOS] Xcode12 Build Error  (0) 2022.06.30
[redis] windows redis 설치  (0) 2022.06.07
[Docker] Docker 사용기 (python)  (0) 2021.12.01
[NGINX] 꿀 사이트  (0) 2021.10.22
Nginx 재기동, restart vs reload  (0) 2021.09.16