in reply to Re^2: Trouble opening FIFO for speedy MySQL loading
in thread Trouble opening FIFO for speedy MySQL loading
I kicked off your script in background, where it hung. When I run this script, the original script (the one you previously posted) exits, indicating that the open completed.#!/usr/bin/perl -w use strict; use IO::File; my $fifo = "fifo"; sysopen(FIFO, $fifo, O_RDONLY) or die "can't read $fifo: $!"; close FIFO;
|
|---|