aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/README.md b/README.md
index 9922a24..caa259f 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,13 @@ To update later on, just run that command again.
### Specify the `$PATH`
-If `~/.path` exists, it will be sourced along with the other files, before any feature testing (such as detecting which version of `ls` is being used) takes place.
+If `~/.path` exists, it will be sourced along with the other files, before any feature testing (such as [detecting which version of `ls` is being used](https://github.com/mathiasbynens/dotfiles/blob/aff769fd75225d8f2e481185a71d5e05b76002dc/.aliases#L21-26)) takes place.
+
+Here’s an example `~/.path` file that adds `~/bin` to the `$PATH`:
+
+```bash
+export PATH="$HOME/bin:$PATH"
+```
### Add custom commands without creating a new fork