I can run the following script from the web it won't convert but it does display "hello world".
test1.pl
If I'm on the server I can type "perl test1.pl" and it will convert and display hello world.
test1.pl
Code:
#!/usr/bin/perl
exec "convert image.pdf image.jpg";
print "hello world";
If I'm on the server I can type "perl test1.pl" and it will convert and display hello world.