Sftp: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 59: | Line 59: | ||
</source> | </source> | ||
[[category: | [[category:system]] |
Latest revision as of 12:04, 27 July 2016
Overview
Secure FTP(sftp) 내용 정리
Commands
?, help
sftp> help Available commands: bye Quit sftp cd path Change remote directory to 'path' chgrp grp path Change group of file 'path' to 'grp' chmod mode path Change permissions of file 'path' to 'mode' chown own path Change owner of file 'path' to 'own' df [-hi] [path] Display statistics for current directory or filesystem containing 'path' exit Quit sftp get [-Ppr] remote [local] Download file reget remote [local] Resume download file help Display this help text lcd path Change local directory to 'path' lls [ls-options [path]] Display local directory listing lmkdir path Create local directory ln [-s] oldpath newpath Link remote file (-s for symlink) lpwd Print local working directory ls [-1afhlnrSt] [path] Display remote directory listing lumask umask Set local umask to 'umask' mkdir path Create remote directory progress Toggle display of progress meter put [-Ppr] local [remote] Upload file pwd Display remote working directory quit Quit sftp rename oldpath newpath Rename remote file rm path Delete remote file rmdir path Remove remote directory symlink oldpath newpath Symlink remote file version Show SFTP version !command Execute 'command' in local shell ! Escape to local shell ? Synonym for help
Example
Downloads
<source lang=bash>
- !/bin/sh
HOST=loalhost USER=yourid
echo "OK, starting now..." cd /tmp
sftp -b /dev/stdin $USER@$HOST <<EOF cd /home/user/backup/backups get *.tar.gz rm *.tar.gz bye EOF </source>