Pending the issue of the previous post, I tried to solve it in a different way.
Similar to other core Unix programs, I tried to use a pipe to the STDIN of newLisp, but it fails. Below taken from the command prompt:
So how can I accept stdin to the newLisp binary and perform a task with it?peter[~]$ echo "help" | awk '{print}'
help
peter[~]$ echo "help" | sed {}
help
peter[~]$ echo "help" | cut -f1
help
peter[~]$ echo "help" | newlisp -e "(println)"
nil
If newLisp wants to integrate in a Unix environment then it would be great if this works!
Thanks