Let files="apartment.flat my apartment1.flat"
I want to cat those files using cat $files
The problem is cat searches for apartment.flat, my and apartmrnt1.flat
What do i need to do in order to escape those spaces?
I tried files="apartment.flat 'my apartment1.flat'" And files="apartment.flat my\ apartment1.flat" Nothing works...
Thank!