在我的主文件夾中,我有多個子文件夾,每個子文件夾包含多個文件。我想合併這些文件在每個子文件夾中。合併每個文件夾中的文件(貓)Unix
所以我試圖做這樣的事情:
cd ../master-folder
for file in $(find . -name "*.txt");
do
cat "all the text files in this sub folder" > "name of the subfolder.txt"
rm "all the previous text files excluding the merged output obviously"
done
感謝幫助!謝謝。
附加順序是否重要? – paul 2012-03-22 20:45:18
嘗試使用-exec遞歸查找。它會需要一些逃避巫術,但它可能是可行的 – 2012-03-22 20:47:13
順序並不重要。 – dawnoflife 2012-03-22 20:53:33