diff --git a/xCAT-client/bin/xcatDBcmds b/xCAT-client/bin/xcatDBcmds index 5fe5db01f..f9f910f48 100755 --- a/xCAT-client/bin/xcatDBcmds +++ b/xCAT-client/bin/xcatDBcmds @@ -53,12 +53,25 @@ else $cmdref->{cwd}->[0] = cwd(); # get info from files piped in as stdin -if (-p STDIN) { - my $data; - while ( ) { - $data.=$_; - } - $cmdref->{stdin}->[0]=$data; +my $data; +if (($^O =~ /^linux/i) && ($ENV{'SHELL'} =~ /\/ksh$/)) +{ + my $rin=""; + vec($rin,fileno(STDIN),1)=1; + my $nfound=select($rout=$rin,"","",1); + if ($nfound) + { + while ( ) { $data.=$_; } + $cmdref->{stdin}->[0]=$data; + } +} +else +{ + if (-p STDIN) { + while ( ) { $data.=$_; } + $cmdref->{stdin}->[0]=$data; + } +} } # The noderange can be specified through a noderange file # the noderange file can be a relative path,