Suppose the command alphaproduces this output:
a b c
d
If I run the command
beta $(alpha)
then betait is performed with four parameters "a", "b", "c"and "d".
But if I run the command
beta "$(alpha)"
it betawill be executed with a single parameter "a b c d".
What should I write to perform betawith two parameters, "a b c"and "d". That is, how to $(alpha)get one parameter to be returned to the output string from alpha?
oz1cz source
share