Fix installation instructions in README

Closes #150
This commit is contained in:
Ryan Delaney 2020-03-17 22:32:58 -07:00
parent 2ff84deea9
commit fbca50f09b
1 changed files with 4 additions and 4 deletions

View File

@ -39,15 +39,15 @@ Here's a screenshot _(font and minor color shades, of course, depend on terminal
An installation script is provided with this repository:
```console
$ wget https://raw.github.com/trapd00r/LS_COLORS/master/LS_COLORS -O /tmp/LS_COLORS
$ ( cd /tmp/LS_COLORS && sh /tmp/LS_COLORS/install.sh )
$ mkdir /tmp/LS_COLORS && curl -L https://api.github.com/repos/trapd00r/LS_COLORS/tarball/master | tar xzf - --directory=/tmp/LS_COLORS --strip=1
$ ( cd /tmp/LS_COLORS && sh install.sh )
To enable the colors, add the following line to your shell's start-up script:
For Bourne shell (e.g. ~/.bashrc or ~/.zshrc):
. /lscolors.sh"
. ~/.local/share/lscolors.sh"
For C shell (e.g. ~/.cshrc):
. /lscolors.csh"
. ~/.local/share/lscolors.csh"
$
```