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

GITHUB - Creating a Repo

INSTALL GOLANG IN CENTOS 7