mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-08-09 19:50:32 +02:00
commit bash-20041014 snapshot
This commit is contained in:
@@ -962,22 +962,26 @@ pipeline_command: pipeline
|
||||
{ $$ = $1; }
|
||||
| BANG pipeline
|
||||
{
|
||||
$2->flags |= CMD_INVERT_RETURN;
|
||||
if ($2)
|
||||
$2->flags |= CMD_INVERT_RETURN;
|
||||
$$ = $2;
|
||||
}
|
||||
| timespec pipeline
|
||||
{
|
||||
$2->flags |= $1;
|
||||
if ($2)
|
||||
$2->flags |= $1;
|
||||
$$ = $2;
|
||||
}
|
||||
| timespec BANG pipeline
|
||||
{
|
||||
$3->flags |= $1|CMD_INVERT_RETURN;
|
||||
if ($3)
|
||||
$3->flags |= $1|CMD_INVERT_RETURN;
|
||||
$$ = $3;
|
||||
}
|
||||
| BANG timespec pipeline
|
||||
{
|
||||
$3->flags |= $2|CMD_INVERT_RETURN;
|
||||
if ($3)
|
||||
$3->flags |= $2|CMD_INVERT_RETURN;
|
||||
$$ = $3;
|
||||
}
|
||||
| timespec list_terminator
|
||||
|
||||
Reference in New Issue
Block a user