pantomnesia wrote: 
> 
> > > > SL_NAME=`"The Player"` > > 
> ...but no joy there either. I'll have a search and play around with
> the various ways of escaping the string.

The escaping mechanism can be picky - your 2nd example show you used
character back tick *`* and not single quote *'* - single quote.
Backtick is special character in shell scripts.

Your backslash example also has an error 
> SL_NAME="\"The Player"\" 

It shoudl be escaping the inner quotes 


Code:
--------------------
    SL_NAME="\"The Player\"" 
--------------------


------------------------------------------------------------------------
bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=114712

_______________________________________________
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to