首页 > 代码库 > 合并数据+统计流数

合并数据+统计流数

#!/bin/bash      
for file in *.txt;do
          echo $file
done

for file in *.txt;do 
      
      {
      cat $file >>all.txt 
     } 
done
      line=$(cat all.txt|sed -n $=) 

      cat all.txt >>all${line}个流.txt 

 

合并数据+统计流数