2010-03-01 128 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 -"