This website works better with JavaScript.
Home
Explore
Help
Sign In
isprogram
/
pyenv
mirror of
https://github.com/pyenv/pyenv.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
240
Wiki
Activity
Browse Source
Add rbenv-commands
pull/360/head^2
Sam Stephenson
15 years ago
parent
df034f5d35
commit
3b13dc9c14
1 changed files
with
11 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+11
-0
libexec/rbenv-commands
+ 11
- 0
libexec/rbenv-commands
View File
@ -0,0 +1,11 @@
#!/usr/bin/env bash -e
shopt -s nullglob
{ for path in ${PATH//:/$'\n'}; do
for command in "${path}/rbenv-"*; do
echo "${command##*rbenv-}"
done
done
} | sort | uniq
Write
Preview
Loading…
Cancel
Save