Variable containing spaces

Hi,
my var is:
PATH_LOG=/opt/WebSphere/CR Comune Roma.log
a filename which contains blank chars.

How can I call it from prompt ?

Ex:

ls $PATH_LOG or
cat $PATH_LOG

tks,
Carmen-

ls "$PATH_LOG"
cat "$PATH_LOG"

cool !! :slight_smile: