in reply to Re^2: redirect output from a command to another command
in thread redirect output from a command to another command
First, it doesn't start at 63 and count up, it starts at 63 and counts down. I should have used 63 and 62, not 63 and 64. The reason given by the source is
Move FD to a number close to the maximum number of file descriptors allowed in the shell process, to avoid the user stepping on it with redirection and causing us extra work.
There's no mention of anything being special about fd 63 compared to fd 3 (or whatever) other than the user might be using fd 3 already. Perhaps then it's just the close-on-exec flag that varies.
use strict; use warnings; use Fcntl qw( F_GETFD F_SETFD FD_CLOEXEC ); use POSIX qw( dup2 ); sub keep_open_on_exec { my ($fh) = @_; my $flags = fcntl($fh, F_GETFD, 0); next if $flags & FD_CLOEXEC == 0; fcntl($fh, F_SETFD, $flags & ~FD_CLOEXEC); } open(my $src1_fh, '-|', echo => 'apples') or die("open: $!"); open(my $src2_fh, '-|', echo => 'oranges') or die("open: $!"); keep_open_on_exec($_) for $src1_fh, $src2_fh; system(diff => '/dev/fd/'.fileno($src1_fh), '/dev/fd/'.fileno($src2_fh +)) >= 0 or die("system: $!"); printf("\$?=%04X\n", $?);
Bingo!
1c1 < apples --- > oranges $?=0100
One other note, apparently some systems use /proc/dev/fd instead of /dev/fd.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: redirect output from a command to another command
by Allasso (Monk) on Mar 02, 2011 at 15:58 UTC | |
by ikegami (Patriarch) on Mar 02, 2011 at 16:56 UTC | |
|
Re^4: redirect output from a command to another command
by Allasso (Monk) on Mar 02, 2011 at 16:21 UTC | |
by ikegami (Patriarch) on Mar 02, 2011 at 17:03 UTC |