combine 3 files into 1 linux code example
Example 1: how to append two file sin bash
cat file1 file2 > file 3
Example 2: how to create multiple files in a directory in linux
mkdir {test1,test2,test3}
Example 3: join two files horizontally unix
paste f1 f2