shellcheck icon indicating copy to clipboard operation
shellcheck copied to clipboard

SC2129 - If there is already a grouped redirection, SC2129 cannot be triggered

Open vivodi opened this issue 2 months ago • 0 comments

The following problematic code does not trigger SC2129 — if there is already a grouped redirection, SC2129 cannot be triggered:

{
  echo foo
  date
} >> file
cat stuff >> file

Correct code:

{
  echo foo
  date
  cat stuff
} >> file

vivodi avatar Nov 09 '25 04:11 vivodi