You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
272 B
Plaintext
14 lines
272 B
Plaintext
11 years ago
|
#!/usr/bin/env bash
|
||
|
. "$GVM_ROOT/scripts/functions"
|
||
|
|
||
|
echo
|
||
|
display_message "gvm go aliases"
|
||
|
echo
|
||
|
|
||
|
for a in $(cd "$GVM_ROOT/environments" ; $GREP_PATH -l "gvm_alias_name" ./*); do
|
||
|
t=$(sh -c ". $GVM_ROOT/environments/$a ; echo \$gvm_go_name")
|
||
|
echo " $a ($t)"
|
||
|
done
|
||
|
echo
|
||
|
|