show/hide this revision's text 2 added 16 characters in body

Bad:

`perl foo.pl`
$(perl foo.pl)

Why is this bad? Because of so many reasons; most notably:

  • Wordsplitting: What you're doing here is taking the output of the perl script, splitting it into chunks wherever there are spaces, tabs or newlines, and taking those chunks as arguments to the first chunk which is the command to run. In really extremely simplistic cases like $(echo 'date +%s') it might work; but that's just a really bad representation of what you're REALLY doing here.
  • You cannot do quoting or use any other bash shell features like parameter expansion, bash keywords, etc.

Good, but inconvenient:

perl foo.pl > mytmpfile; bash mytmpfile

Creating a temporary file to put your perl script's output into and then running that with bash works, but it's inconvenient as you need to create (and clean up!) your temporary file and have it in a portably writable (and secure!) location.

Also remember not to use . or source to execute the temporary file unless you really intend to run it all in the active shell. Moreover, when you use . or source, you won't be able to reliably clean up your temporary file afterward.

Probably the best solution:

perl foo.pl | bash

This is pretty safe all-round ("safe" in the context of, least bug-prone) assuming your perl script outputs correct bash syntax, of course.

Alternatives that do pretty much the same thing:

bash < <(perl foo.pl)
bash <(perl foo.pl)
show/hide this revision's text 1

Bad:

`perl foo.pl`
$(perl foo.pl)

Why is this bad? Because of so many reasons; most notably:

  • Wordsplitting: What you're doing here is taking the output of the perl script, splitting it into chunks wherever there are spaces, tabs or newlines, and taking those chunks as arguments to the first chunk which is the command to run. In really extremely simplistic cases like $(echo 'date +%s') it might work; but that's just a really bad representation of what you're REALLY doing here.
  • You cannot do quoting or use any other bash shell features like parameter expansion, bash keywords, etc.

Good, but inconvenient:

perl foo.pl > mytmpfile; bash mytmpfile

Creating a temporary file to put your perl script's output into and then running that with bash works, but it's inconvenient as you need to create (and clean up!) your temporary file and have it in a portably writable (and secure!) location.

Also remember not to use . or source to execute the temporary file unless you really intend to run it all in the active shell. Moreover, when you use . or source, you won't be able to reliably clean up your temporary file afterward.

Probably the best solution:

perl foo.pl | bash

This is pretty safe all-round ("safe" in the context of, least bug-prone) assuming your perl script outputs correct bash syntax, of course.

Alternatives that do pretty much the same thing:

bash < <(perl foo.pl)
bash <(perl foo.pl)