Linux – Cannot cat file which has space in name in linux

bashcatlinux

I believe there's a simple fix but cannot debug it out.

I have file called "file name with space"
How do I cat this file from Linux bash ?

Best Answer

Does putting quotation marks around the name not work?

cat "file name with space"
Related Question