i wrote:
| define raw_paste {
| ignerr read line
| if [ "$?" == 0 ]
| inject_input "${line}"
| \call raw_paste
| endif
|}
Not true, it needs to be
define raw_paste {
ignerr read line
if [ "$?" == 0 ]
eval inject_input "${line}"
\call raw_paste
endif
}
otherwise $line would not become expanded (i think this command
should then not perform any argument message by itself).
--steffen
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
__________________________________
[email protected]