mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-30 23:13:49 +02:00
commit bash-20070329 snapshot
This commit is contained in:
+4
-4
@@ -879,13 +879,13 @@ print_redirection (redirect)
|
||||
case r_output_direction:
|
||||
if (redirector != 1)
|
||||
cprintf ("%d", redirector);
|
||||
cprintf (">%s", redirectee->word);
|
||||
cprintf ("> %s", redirectee->word);
|
||||
break;
|
||||
|
||||
case r_input_direction:
|
||||
if (redirector != 0)
|
||||
cprintf ("%d", redirector);
|
||||
cprintf ("<%s", redirectee->word);
|
||||
cprintf ("< %s", redirectee->word);
|
||||
break;
|
||||
|
||||
case r_inputa_direction: /* Redirection created by the shell. */
|
||||
@@ -895,7 +895,7 @@ print_redirection (redirect)
|
||||
case r_appending_to:
|
||||
if (redirector != 1)
|
||||
cprintf ("%d", redirector);
|
||||
cprintf (">>%s", redirectee->word);
|
||||
cprintf (">> %s", redirectee->word);
|
||||
break;
|
||||
|
||||
case r_deblank_reading_until:
|
||||
@@ -975,7 +975,7 @@ print_redirection (redirect)
|
||||
case r_input_output:
|
||||
if (redirector != 1)
|
||||
cprintf ("%d", redirector);
|
||||
cprintf ("<>%s", redirectee->word);
|
||||
cprintf ("<> %s", redirectee->word);
|
||||
break;
|
||||
|
||||
case r_output_force:
|
||||
|
||||
Reference in New Issue
Block a user