mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 07:34:32 +00:00
fb7a6e5f34
Used to query for a builtin's existence, like `type -q` and `functions -q` can be used to query for a things and a functions existence respectively.
7 lines
217 B
Fish
7 lines
217 B
Fish
# Tests for the "builtin" builtin/keyword.
|
|
builtin -q string; and echo String exists
|
|
builtin -q; and echo None exists
|
|
builtin -q string echo banana; and echo Some of these exist
|
|
builtin -nq string
|
|
echo $status
|
|
exit 0
|