summaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-misc/echo_write_error.tests (plain)
blob: 0a40c9ff73868a9f19c37139e8011b1eade3aac9
1trap "" PIPE
2
3{
4sleep 1
5echo Cant write this - get EPIPE
6echo Ok: $? >&2
7} | { true; }
8