Your are using backticks (``) in combination with the system-command. that is plain wrong.
You will have to use
print `command`;
or
system ("command");
Clarification: backticks execute the command and return the output (see perlop). system() will execute the command, while any output of the command will go directly to sdtout.