Build golang app from windows to Linux 64 bitUpdated: 14th November 2020Tags: go windows linux buildTL DR; To build app on windows to linux 64 type this in powershell$Env:GOOS = "linux"; $Env:GOARCH = "amd64"; go build main.go
Windows powershell get first / last 100 lines of txt fileUpdated: 1th July 2020Tags: windows powershell