Post

Linux 콘솔 sftp

1. 접속

1
$ sftp [ID]@[접속 도메인]

2. 명령어

  • 폴더 이동
1
$ cd [폴더명]
  • 폴더 조회
1
$ ls
  • 파일 다운로드
1
$ get [파일명]
  • 파일 업로드
1
$ put [파일명]
  • 전체 파일 다운로드
1
$ mget *
  • 전체 파일 업로드
1
$ mput *
This post is licensed under CC BY 4.0 by the author.