Browse Source

Improve eval expression in README.md (#204)

The $(command) expression is preferred instead of backticks.
c.f https://google.github.io/styleguide/shellguide.html#command-substitution
remotes/origin/add-simple-redirecting-site
Maxime Loliée 5 years ago committed by GitHub
parent
commit
389ab46dc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      README.md

2
README.md

@ -67,7 +67,7 @@ curl -fsSL https://github.com/Schniz/fnm/raw/master/.ci/install.sh | bash -s -- @@ -67,7 +67,7 @@ curl -fsSL https://github.com/Schniz/fnm/raw/master/.ci/install.sh | bash -s --
- Add the following line to your `.bashrc`/`.zshrc` file:
```bash
eval "`fnm env --multi`"
eval "$(fnm env --multi)"
```
If you are using [fish shell](https://fishshell.com/), add this line to your `config.fish` file:

Loading…
Cancel
Save