In the Unix world, we enjoy such constructs as
{command to generate list of commands} | sh
In AmigaDOS, we have to
{command to generate list of commands} > t:tempfile
execute t:tempfile
For instance, trying to convert a bunch of DMS files to ADF, I used this command
list dms all files p=#? lformat "dms write %p%n to rad: nopause *n transadf drive rad: file adf/%p%m.ADF" > t:transdms
execute t:transdms
When what I would really like to do is something like
list lformat "{command}" | shell
How could I accomplish this?