The cat command
Examples of uses:
[root@academy tmp]# cat myfile.txt
hello world from Yaser Rahmati
[root@academy tmp]#[root@academy tmp]# cat file1.txt file2.txt
content inside file1.txt
content inside file2.txt
[root@academy tmp]#[root@academy tmp]# ls
apa.txt file1.txt file3.txt myfile.txt myfolder2 yum.log
F1 file2.txt ks-script-ggLlAt myfolder myfolder3
[root@academy tmp]# cat *.txt
content inside file1.txt
content inside file2.txt
hello world from Yaser Rahmati
[root@academy tmp]#Last updated