Files
gvm/scripts/listall
T

12 lines
187 B
Bash
Executable File

#!/bin/bash
echo "
gvm gos (available)
"
curl -s https://go.googlecode.com/hg/.hgtags | awk '{ print $2 }'
if [[ $? -ne 0 ]]; then
echo "Failed to get list from Google"
exit 1
fi
echo