mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-13 16:37:34 +00:00
6e9250425a
Minimal reproducer: `fish -c "exec cat<x"`
6 lines
138 B
Fish
6 lines
138 B
Fish
exec cat < nosuchfile
|
|
echo "failed: $status"
|
|
not exec cat < nosuchfile
|
|
echo "neg failed: $status"
|
|
exec cat < /dev/null
|
|
echo "not reached"
|