mirror of
https://github.com/wahyd4/gvm.git
synced 2026-08-10 05:16:13 +10:00
12 lines
187 B
Bash
Executable File
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
|
|
|