我正在寻找一个命令行,它可以对两个具有相同名称但位于不同文件夹中的文件执行一些操作。
例如,如果
- 文件夹
A
包含文件1.txt
,2.txt
,3.txt
, ... - 文件夹
B
包含文件1.txt
,2.txt
,3.txt
, ...
我想连接这两个文件A/1.txt
and B/1.txt
, A/2.txt
and B/2.txt
, ...
我正在寻找一个shell命令来做到这一点:
if file name in A is equal the file name in B then:
cat A/1.txt B/1.txt
end if
对于文件夹A
和中的所有文件B
,如果只有名称匹配。