Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
342 views
in Technique[技术] by (71.8m points)

bash script - iterative merge files on a directory

Hello I want to iteratively merge the files in input_directory and put the merged ones in output_directory.

Suppose in input_directory I have : file1.txt, file2.txt, file3.txt

I want to the output directory to contain the following files:

  • merge1.txt : same as file1.txt
  • merge2.txt : merge file1.txt file2.txt
  • merge3.txt : merge file1.txt file2.txt file3.txt

I have almost no experience with bash scripts, it is obvious that it can be done with an iterator in a for loop, but I don't know how.

Thank you in advance..

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Store the previous filename that was appended to output and use it during next iteration:

#!/bin/bash

touch prev #a temp variable to hold previous filename
i=1;

for file in $(ls /INPUT/file*); 
do 
   cat /OUTPUT/$prev /INPUT/$file > /OUTPUT/merge$i;
   prev=merge$i;
   let i=i+1
 done

This code takes advantage of the fact ls list the files in sorted when they have same prefix. You can modify it if you have filenames with different prefixes and have a specific order in which you want to output them.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...