mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-17 16:11:15 -03:00
7 lines
138 B
Fish
7 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"
|