1
I need to use cat command to display the contents of a file, and the filename has spaces in them: "embedded board link.rtf".
I assign the filename using a variable: I="embedded board link.rtf", but when I use cat $I, I have this error message.
wireless-10-146-35-118 Desktop> cat $I
cat: embedded: No such file or directory
cat: board: No such file or directory
cat: link.rtf: No such file or directory
What might be wrong?