Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
pscp -r ../mydir/ xxx@example.com:/var/www/html/xxx/ 复制mydir下的所有内容,有没有办法排除mydir下的一个子目录?
不是 scp 命令本身。
但是...安装cygwin,然后...
find . \! -name to_exclude -print | cpio -o | ssh where-ever "cd dest;cpio -i -"