Skip to content

Instantly share code, notes, and snippets.

View rajeevsingh-ag's full-sized avatar

Rajeev Singh rajeevsingh-ag

View GitHub Profile
#!/bin/bash
function checkGoInstalled()
{
gobinfile="/usr/local/go/bin/go"
if test -f $gobinfile; then
echo "go binary exists - OK"
$gobinfile version
return 0
else