I am trying to execute the following gpg command from within Perl:
`gpg --yes -e -r me@mydomain.com "$backupPath\\$backupname"`;
However I get the following error:
Global symbol "@mydomain" requires explicit package name (did you forget to declare "my @mydomain"?)
Obviously I need to escape the '@' symbol but don't know how. How do I execute this command in Perl?