While displaying more than one file with more, I don't want to display filenames along with the contents.
I only need to display the contents of the file. Is there any way to escape the filenames?
While displaying more than one file with more, I don't want to display filenames along with the contents.
I only need to display the contents of the file. Is there any way to escape the filenames?
Trivial
cat file1 file2 file3 ... filen | more
more "filename with space" "filenames" filename\ also\ with\ spaces and.one.more.file is all you need, but you might consider using less instead of more. They say less is more.