mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-08 04:46:15 +08:00
![Fabian Homborg](/assets/img/avatar_default.png)
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.
8 lines
217 B
Fish
8 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
|