I have a file where I have lot of file name:
file1.txt file2.txt file3.txt file4.txt ... fileN.txt
I want to cat all the file that are present in this file
Since you tagged bash:
cat $(< file)