On Sat, Dec 18, 2021 at 11:16:38PM -0500, Theodore Ts'o wrote: > This is needed to account for bash 5.1 adding line number annotation > when executing a command via the -c option and it fails. For example, > "bash -c 'echo foo > /'" will cause bash 5.1 to report: > > bash: line 1: /: Is a directory > > instead of: > > bash: /: Is a directory > > Signed-off-by: Theodore Ts'o <tytso@xxxxxxx> > --- > common/filter | 11 +++++++++++ > tests/generic/572 | 33 +++++++++++++++++++-------------- > 2 files changed, 30 insertions(+), 14 deletions(-) Reviewed-by: Eric Biggers <ebiggers@xxxxxxxxxx> - Eric