mirror of
https://github.com/trapd00r/LS_COLORS.git
synced 2024-11-13 07:11:09 +01:00
Fix install script quotes
This commit is contained in:
parent
da2f061feb
commit
e414c6818c
2 changed files with 4 additions and 4 deletions
|
@ -44,10 +44,10 @@ $ ( 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):
|
||||
. ~/.local/share/lscolors.sh"
|
||||
. "~/.local/share/lscolors.sh"
|
||||
|
||||
For C shell (e.g. ~/.cshrc):
|
||||
. ~/.local/share/lscolors.csh"
|
||||
. "~/.local/share/lscolors.csh"
|
||||
$
|
||||
```
|
||||
|
||||
|
|
|
@ -9,10 +9,10 @@ if dircolors -b LS_COLORS > lscolors.sh && dircolors -c LS_COLORS > lscolors.csh
|
|||
To enable the colors, add the following line to your shell's start-up script:
|
||||
|
||||
For Bourne shell (e.g. ~/.bashrc or ~/.zshrc):
|
||||
. $lscolors_data_dir/lscolors.sh"
|
||||
. "$lscolors_data_dir/lscolors.sh"
|
||||
|
||||
For C shell (e.g. ~/.cshrc):
|
||||
. $lscolors_data_dir/lscolors.csh
|
||||
. "$lscolors_data_dir/lscolors.csh"
|
||||
|
||||
EOF
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue