摘要: ftp下载数据#!/bin/bashHOST=''USER=''PASS=''ftp -i -n $HOST <<EOFuser $USRE $PASSbinarycd /homemget filemput filequitEOFopenSSHssh-keygen -t rsa~/.ssh/id_rsa.pub内容加到远程主机~/.ssh/authorized_keys中本地挂载远程驱动器sshfs user@remotehost:/home/path /local/mountpoint卸载远程驱动器umount /mnt/mount 阅读全文
posted @ 2013-11-24 20:22 enjoywill 阅读(138) 评论(0) 推荐(0)
摘要: wget -c 断点续传wget -t 重复次数wget -O 下载文件重命名wget --mirror 下载整个网站wget --user username --password pass url 阅读全文
posted @ 2013-11-24 19:31 enjoywill 阅读(142) 评论(0) 推荐(0)