-e hi there hi there /bin/echo #### #!/usr/bin/perl -w my $result = `echo -e 'hi there'`; print "$result"; $result = `/bin/echo -e 'hi there'`; print "$result"; $result = `which echo`; print "$result";