in reply to Re: Re: Backticks without shell
in thread Backticks without shell

My guess (No informed ideas here!) that they're a legacy feature from trying to support bash scripters and their backticks as well as it's just a quick simple and above all, lazy way to get the output of a command.
my $data = `cmd`;
Is vastly preferable to
open FH,'cmd |'; my $data; $data.=$_ while(<FH>);
(or something of that nature).