3 # a little program to see if I can use ax25_call in a perl script
9 $pid = Open2( \*IN, \*OUT, "ax25_call ether GB7DJK-1 G1TLH");
11 IN->input_record_separator("\r");
12 OUT->output_record_separator("\r");
15 vec($rin, fileno(STDIN), 1) = 1;
16 vec($rin, fileno(IN), 1) = 1;
18 while (($nfound = select($rout=$rin, undef, undef, 0.001)) >= 0) {