Merge pull request #151 from rpdelaney/install_fix

Fix installation instructions in README
This commit is contained in:
Ryan Delaney 2020-03-17 22:34:33 -07:00 committed by GitHub
commit 8afc7ef53b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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"
$
```