Browse Source

Add comments to Anaconda executables (#491)

pull/494/head
Yamashita, Yuu 8 years ago
parent
commit
ebd6c1aee3
1 changed files with 48 additions and 7 deletions
  1. +48
    -7
      pyenv.d/which/anaconda.bash

+ 48
- 7
pyenv.d/which/anaconda.bash View File

@ -14,11 +14,14 @@ conda_exists() {
} }
conda_shims() { conda_shims() {
## curl
cat <<EOS cat <<EOS
assistant
curl curl
curl-config curl-config
designer
EOS
## fontconfig
cat <<EOS
fc-cache fc-cache
fc-cat fc-cat
fc-list fc-list
@ -27,14 +30,32 @@ fc-pattern
fc-query fc-query
fc-scan fc-scan
fc-validate fc-validate
EOS
## freetype
cat <<EOS
freetype-config freetype-config
lconvert
EOS
## libpng
cat <<EOS
libpng-config libpng-config
EOS
## openssl
cat <<EOS
openssl
EOS
## qtchooser
cat <<EOS
assistant
designer
lconvert
linguist linguist
lrelease lrelease
lupdate lupdate
moc moc
openssl
pixeltool pixeltool
qcollectiongenerator qcollectiongenerator
qdbus qdbus
@ -48,17 +69,37 @@ qmlplugindump
qmlviewer qmlviewer
qtconfig qtconfig
rcc rcc
uic
xmlpatterns
xmlpatternsvalidator
EOS
## redis
cat <<EOS
redis-benchmark redis-benchmark
redis-check-aof redis-check-aof
redis-check-dump redis-check-dump
redis-cli redis-cli
redis-server redis-server
EOS
## sqlite3
cat <<EOS
sqlite3 sqlite3
uic
EOS
## libxml2
cat <<EOS
xml2-config xml2-config
xmlpatterns
xmlpatternsvalidator
EOS
## libxslt
cat <<EOS
xslt-config xslt-config
EOS
## xsltproc
cat <<EOS
xsltproc xsltproc
EOS EOS
} }

Loading…
Cancel
Save