Hello!
I need to redirect the content of a file into a program using stdin. In my shell I would do like this (silly example):
wc < somefile
Is this possible to do with proc:system? Giving "<" as an argument to the command doesn't work:
proc:system("wc", ("<", "somefile")) outputs [BXPR0001] wc: <: No such file or directory
Is there any way around this? The program I need to call can only read from stdin.
Best regards, Kristian K