我有以下目录结构:
Main_Dir
|
-----------------------------------
Subdir1 Subdir2 Subdir3
| | |
--------- --------- ---------
| | | | | | | | |
fo1 fo2 f03 fo1 fo2 f03 fo1 fo2 f03
我想将所有子目录(Subdir1
、Subdir2
、Subdir3
)复制到一个新文件夹。但我只想将其复制fo1
到fo2
新位置。
不知道如何才能做到。
答案1
如果目录树不仅仅是目录树,..../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)
如果您需要排除其他形式的目录,您可以添加多个排除。
答案2
使用rsync
:
rsync -av --exclude="f03" /path/to/Main_Dir/ /pth/to/destination
答案3
你可以尝试这样的事情:
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
returns Subdir1
)。然后你可以使用 shell 的大括号扩展以避免多次键入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
答案4
如果您的目录结构与示例中完全相同(即所有fo
文件都位于同一级别):
mkdir -p New_Dir/{Subdir1,Subdir2,Subdir3}
for subdir in Subdir1 Subdir2 Subdir3;do
cp -r Main_Dir/"$dir"/{fo1,fo2} New_Dir/"$dir"/
done