Golang : Check version
Sometimes, the most obvious thing can be the hardest to remember. This is just a quick note for future usage...in case someone needs a simple reminder to find out the Golang version installed on a machine.
The command to find out is ....
>go version
Might be useful to include this information if you're querying many Golang servers remotely.
See also : Golang : Check from web if Go application is running or not
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+21.5k Golang : How to reverse slice or array elements order
+9.8k Golang : Channels and buffered channels examples
+10.3k Golang : Bubble sort example
+10.8k Golang : Create S3 bucket with official aws-sdk-go package
+14.7k Golang : Search folders for file recursively with wildcard support
+19.1k Golang : Fix cannot download, $GOPATH not set error
+10.2k Swift : Convert (cast) String to Integer
+21.7k Golang : Convert seconds to minutes and remainder seconds
+15.9k Golang : How to extract links from web page ?
+31.7k Golang : Validate email address with regular expression
+7.3k SSL : How to check if current certificate is sha1 or sha2 from command line
+23.9k Golang : How to validate URL the right way