HEX
Server: Apache
System: Linux box5936.bluehost.com 5.14.0-162.23.1.9991722448259.nf.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 31 18:11:45 UTC 2024 x86_64
User: aviatjd3 (1318)
PHP: 8.3.32
Disabled: NONE
Upload Files
File: //usr/share/doc/perl-Net-OpenSSH/examples/git_ssh_through_mux.pl
#!/usr/bin/perl

use strict;
use warnings;

my $ssh_mux = $ENV{SSH_MUX};
print STDERR "SSH_MUX=$ssh_mux\n";
defined $ssh_mux or die "SSH_MUX is not defined\n";
-S $ssh_mux or die "'ssh_mux' is not a socket\n";

do {
    exec ssh => -S => $ssh_mux, @ARGV
};
die "Unable to execute ssh program: $!\n";