In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/01 Report--
This article is about how to recursively exclude files when using the scp command. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.
Q: I need to copy all the folders that contain * .c files from my local notebook named hostA to hostB. I use the following scp command, but I don't know how to exclude specific files (such as * .out):
$scp-r ~ / projects/ user@hostB:/home/delta/projects/
How do I tell the scp command to exclude specific files or directories from the Linux/Unix command line?
People can use the scp command to securely copy files between network hosts. It uses ssh for data transfer and authentication. The typical syntax is:
Scp file1 user@host:/path/to/dest/scp-r / path/to/source/ user@host:/path/to/dest/scp exclude files
I don't think you can filter or exclude files when using the scp command. However, there is a good solution to exclude the file and copy it securely using ssh. This page explains how to filter or exclude files when using scp to recursively copy directories.
How to use the rsync command to exclude files
The syntax is:
Rsync av-e ssh-- exclude='*.out' / path/to/source/ user@hostB:/path/to/dest/
Here:
Hongmeng official Strategic Cooperation to build HarmonyOS Technology Community
-a: recursively to the directory, that is, copy all files and subdirectories. In addition, turn on archive mode and all other options (equivalent to-rlptgoD)
-v: detailed output
-e ssh: use ssh as the remote shell so that everything is encrypted
-- exclude='*.out': excludes files that match patterns, such as * .out or * .c.
Example of the rsync command
In this example, all files are copied recursively from the ~ / virt/ directory, but all * .new files are excluded:
$rsync-av-e ssh-- exclude='*.new' ~ / virt/ root@centos7:/tmp
Sample output:
Scp exclude files but using rsync exclude command
If rsync is not found on the remote server, the rsync command will fail. In this case, try the following scp command, which uses bash shell pattern matching in the current directory (it cannot be used with the-r option):
$ls
Sample output:
Centos71.log centos71.qcow2 centos71.qcow2.new centos71.v2.qcow2.new meta-data user-data
Copy everything in the current directory except .new:
$shopt-s extglob$ scp! (* .new) root@centos7:/tmp/
Sample output:
Centos71.log 100% 4262 1.3MB/s 00:00centos71.qcow2 100% 836MB 32.7MB/s 00: 25 meta-data 100% 47 18.5KB/s 00:00user-data 100% 1543 569.7KB/s 00:00
For more information, see the following man pages:
$man rsync$ man bash$ man scp Thank you for your reading! This is the end of the article on "how to exclude files recursively when using the scp command". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it out for more people to see!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.