docs(faq): for uninstalling, change which to command -v (#3394)

* Changed 'which' to 'command -v' which is more general, and available on more systems

* docs: for uninstalling, change which to command -v
This commit is contained in:
Tobias 2022-01-07 21:53:22 +01:00 committed by GitHub
parent 500dc3ea6e
commit 20a78c1153
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -143,5 +143,5 @@ If Starship was installed using the install script, the following command will d
```sh
# Locate and delete the starship binary
sh -c 'rm "$(which starship)"'
sh -c 'rm "$(command -v 'starship')"'
```