- or download this
$ perl -e '$result = `foobar`'
- or download this
$ perl -Mstrict -Mwarnings -e '$result = `foobar`'
Global symbol "$result" requires explicit package name at -e line 1.
Execution of -e aborted due to compilation errors.
- or download this
$ perl -Mstrict -Mwarnings -e 'my $result = `foobar`'
Can't exec "foobar": No such file or directory at -e line 1.
- or download this
$ perl -Mstrict -Mwarnings -e 'my $result = `ls`'