Quotes and arguments

Hello all,

I have a very dumb problem while writing a script. I want it to execute the following command, but it's not executed because of wrong quotes.

read about eval

1 Like

Thanks! Problem solved.

What was the problem? And how was it solved? You should also read about the potential security vulnerabilities that come from using eval (e.g. Loading�, search for "eval"). As a matter of fact, you should try to stay away from eval, and only use it if absolutely necessary, and only on hard-coded values, never on strings that are input by user, or passed as arguments.