2010-03-01 129 views
0

pscp -r ../mydir/ [email protected]:/ var/www/html/xxx/
复制mydir下的所有东西,有没有办法排除mydir下的一个子目录?pscp排除目录

+1

是不是PSCP Windows程序? – 2010-03-01 01:48:48

+0

是它的腻子scp – rerun 2010-03-01 01:56:09

回答

0

不与scp命令本身。

但是......安装cygwin,然后......

find . \! -name to_exclude -print | cpio -o | ssh where-ever "cd dest;cpio -i -"