The backticks don't really need much explanation, they work exactly like the system function. The above example would look like this with the backticks:
01: $e_string = 'ls -l /root/';
02:
03: $output = `$e_string`;
04: print "Output of \"$e_string\": $output\n";