This repository was archived by the owner on Nov 6, 2020. It is now read-only.
Careless user didn't properly escape when handling stdout #7681
Labels
F2-bug 🐞
The client fails to follow expected behavior.
M4-core ⛓
Core client code / Rust.
Z0-unconfirmed 🤔
Issue might be valid, but it’s not yet known.
Milestone
Debian 4.8.4-1
Parity/v1.8.6-stable-1eab85a-20180117/x86_64-linux-gnu/rustc1.23.0
.deb install, fully synced
Was grepping parity --help and forgot to escape thus breaking the pipe.
-- BAD
me@mine:~/googleskunkworks.co$ parity --help |grep "--no"
grep: option '--no' is ambiguous; possibilities: '--no-filename' '--no-messages' '--no-group-separator'
Usage: grep [OPTION]... PATTERN [FILE]...
Try 'grep --help' for more information.
====================
stack backtrace:
0: 0x55f4d8f6326c -
Thread 'main' panicked at 'Error writing Error to stdout: Error { repr: Os { code: 32, message: "Broken pipe" } }', /checkout/src/libcore/result.rs:906
This is a bug. Please report it at:
-- GOOD
me@mine:~/googleskunkworks.co$ parity --help |grep "--no"
The text was updated successfully, but these errors were encountered: