Answers:
如果目录树不只是目录树,则..../f03
可以使用此rsync
命令复制每个fo1
&fo2
并排除名称为的所有其他目录fo*
。
$ rsync -avz --include='fo[12]/' --exclude='fo*/' \
Main_Dir/ new_Main_Dir/.
在处理这些类型的复制方案时,我总是使用,rsync
它是--dry-run
&--verbose
开关,因此我可以看到它要做什么而不必实际复制文件。
$ rsync -avz --dry-run --verbose --include='fo[12]/' --exclude='fo*/' \
Main_Dir/ new_Main_Dir/.
空运行。
$ rsync -avz --dry-run --include='fo[12]/' --exclude='fo*/' \
Main_Dir/ new_Main_Dir/.
sending incremental file list
./
Subdir1/
Subdir1/fo1/
Subdir1/fo2/
Subdir2/
Subdir2/fo1/
Subdir2/fo2/
Subdir3/
Subdir3/fo1/
Subdir3/fo2/
sent 201 bytes received 51 bytes 504.00 bytes/sec
total size is 0 speedup is 0.00 (DRY RUN)
如果您想了解关于rsync
包含/排除的某些内部逻辑,请使用--verbose
开关。
$ rsync -avz --dry-run --verbose --include='fo[12]/' --exclude='fo*/' \
Main_Dir/ new_Main_Dir/.
sending incremental file list
[sender] showing directory Subdir1/fo2 because of pattern fo[12]/
[sender] showing directory Subdir1/fo1 because of pattern fo[12]/
[sender] hiding directory Subdir1/fo3 because of pattern fo*/
[sender] showing directory Subdir2/fo2 because of pattern fo[12]/
[sender] showing directory Subdir2/fo1 because of pattern fo[12]/
[sender] hiding directory Subdir2/fo3 because of pattern fo*/
[sender] showing directory Subdir3/fo2 because of pattern fo[12]/
[sender] showing directory Subdir3/fo1 because of pattern fo[12]/
[sender] hiding directory Subdir3/fo3 because of pattern fo*/
delta-transmission disabled for local transfer or --whole-file
./
Subdir1/
Subdir1/fo1/
Subdir1/fo2/
Subdir2/
Subdir2/fo1/
Subdir2/fo2/
Subdir3/
Subdir3/fo1/
Subdir3/fo2/
total: matches=0 hash_hits=0 false_alarms=0 data=0
sent 201 bytes received 51 bytes 504.00 bytes/sec
total size is 0 speedup is 0.00 (DRY RUN)
如果需要排除其他形式的目录,则可以添加多个排除项。
用途rsync
:
rsync -av --exclude="f03" /path/to/Main_Dir/ /pth/to/destination
您可以尝试这样的事情:
find Main_Dir -maxdepth 1 -mindepth 1 -type d | while IFS= read -r subdir; do
mkdir -p new_dir/"$(basename $subdir)" &&
cp -r "$subdir"/{fo1,fo2} new_dir/"$(basename $subdir)"/;
done
该find
命令返回Main_Dir的所有直接子目录。basename
将返回子目录中(如名称basename Main_Dir/Subdir1
回报Subdir1
)。然后,您可以使用外壳程序的大括号扩展名来避免键入fo1
和fo2
多次输入,并将它们复制到新创建的new_dir/$(basename $subdir)
目录中。
在特定情况下,您提到以下位置仅存在目录,Main_Dir
并且名称中没有空格或怪异字符,则可以将上述内容简化为
cd Main_Dir; for subdir in *; do
mkdir -p ../new_dir/$subdir && cp -rv $subdir/{fo1,fo2} ../new_dir/$subdir;
done