Explain linux file permission like I'm Five
Updated: 2th June 2023Tags: ubuntu linux
To run some command in background, so you can close terminal, type the following:
nohup command-with-options &
TL DR; To build app on windows to linux 64 type this in powershell
$Env:GOOS = "linux"; $Env:GOARCH = "amd64"; go build main.go