1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-22 02:29:07 +00:00

Updated Troubleshooting (markdown)

Pablo Aguiar 2022-01-02 13:57:16 +01:00
parent 9ae847c6ca
commit 0cea5ecc94

@ -17,3 +17,15 @@ excluded_search_path_prefixes = ['/mnt/']
```
to avoid slowness. For more info, see [this comment](https://github.com/nvbn/thefuck/issues/1036#issuecomment-773641630).
# Usage on Android (or other systems that forbid access to `/proc`
The Fuck tries to guess the shell by inspecting its parent processes. That information lives in `/proc` and if your user can't access `/proc` you must specify the shell:
```bash
eval $(TF_SHELL=bash thefuck --alias)
```
or
```fish
TF_SHELL=fish thefuck --alias | source
```