good first issue
倉庫指標
- Star
- (91 star)
- PR 合併指標
- (平均合併 6天 9小時) (30 天內合併 25 個 PR)
描述
Rust (incorrect - returns error)
$ echo "test" | cargo run --quiet -- -n --posix -e 'i\(text'
# Error: sed: <script argument 1>:1:3: error: extra characters after \ at the end of `i' command
# Exit code: 1
GNU (correct)
$ echo "test" | /usr/bin/sed -n --posix -e 'i\(text'
# Output: (text
# Exit code: 0
Bug Found by Fuzzer