s_isfifo#True if a stat-mode value names a named pipe (FIFO).Synopsis#my $mode = (stat $path)[2]; print "fifo\n" if S_ISFIFO($mode); Returns 1 when $mode & S_IFMT == S_IFIFO, 0 otherwise. With no argument, returns 0.