in reply to Re^4: Perl and Can Bus
in thread Perl and Can Bus
The your simplest approach would be to use a piped open. Something like this:
#! perl -w use strict; open STREAM, './receivetest |' or die $!; while( my $line = <STREAM> ) { print $line; }
That should get you started. Come back with questions arising.
|
|---|