![]() |
![]()
| ![]() |
![]()
NAMEcommand - run a program SYNOPSIScommand [OPTIONS] [COMMANDNAME [ARG ...]] DESCRIPTIONNOTE: This page documents the fish builtin command. To see the documentation on any non-fish versions, use command man command. command forces the shell to execute the program COMMANDNAME and ignore any functions or builtins with the same name. In command foo, command is a keyword. The following options are available:
EXAMPLEScommand ls executes the ls program, even if an ls function also exists. command -s ls prints the path to the ls program. command -q git; and command git log runs git log only if git exists. command -sq git and command -q git and command -vq git return true (0) if a git command could be found and don't print anything. COPYRIGHT2024, fish-shell developers
|