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 の下の 1 つのサブディレクトリを除外する方法はありますか?
scp コマンド自体ではありません。
ただし... cygwinをインストールしてから...
find . \! -name to_exclude -print | cpio -o | ssh where-ever "cd dest;cpio -i -"