Bootstrap

linux文件处理----把一个文件拼接到另一个文件后

cat file1 file2 >> combined_file

file1  file2会依次加到指定的文件后面

;