# How to add a path to Fish Shell

> Learn how to add a folder to your PATH in the Fish shell using the fish_add_path command, so you can run commands stored in that directory from anywhere.

Author: [Flavio Copes](https://flaviocopes.com/about/) | Published: 2023-01-26 | Topics: [CLI](https://flaviocopes.com/tags/cli/) | Canonical: https://flaviocopes.com/how-to-add-a-path-to-fish-shell/

I was looking for a fast way to add a path to my Fish Shell, so I could execute commands into that folder.

Here’s how to do that in Fish Shell:

```shell
fish_add_path "/Users/flavio/bin"
```
