Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- context
- port
- maVen
- find
- Windows
- Windows 10
- IntelliJ
- xargs
- Eclipse
- resource
- vscode
- JavaScript
- netsh
- Mac
- import
- ssh
- profile
- web.xml
- 네트워크
- GIT
- Quartz
- VirtualBox
- lsof
- 줄바꿈 문자
- 단축키
- bash
- Source
- plugin
- tomcat
- grep
Archives
- Today
- Total
develog
[bash] bash 에서 sftp 로 파일 다운로드 받기 본문
# get_file.sh
#!/bin/bash
/usr/bin/sftp -oPort=22 user01@192.168.219.1 << EOF
cd upload
get REMOTE_FILE.txt
quit
Comments