You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ printf "foo" | cargo run -q sed --posix -e 'a\bar'
sed: <script argument 1>:1:3: error: extra characters after \ at the end of `a' command
$ printf "foo" | sed --posix -e 'a\bar'
foo
bar