nohup go run main.go&


This consumes disk spce to write the fmt. To avoid this :

nohup go run main.go > /dev/null 2>&1&


Comments

Popular posts from this blog

INSTALL GIT IN CENTOS 7

Find go version?

Go : Why 'main' function and why 'main' package