TIL how to see if terminal commands exist
POSTED ON:
Use the command -v
to see if the command exists.
For example:
$ command -v nvm
nvm
$ command -v git
/usr/bin/git
Related TILs
Tagged: terminal
POSTED ON:
Use the command -v
to see if the command exists.
For example:
$ command -v nvm
nvm
$ command -v git
/usr/bin/git
Tagged: terminal