in reply to executing commands and getting output
$output = `command`; # ^ ^ # | | [download]
As an alternative, you may use
$output = qx(command); [download]