I have recently completed the Wiki web development tutorial (http://golang.org/doc/articles/wiki/). I had tons of fun and I would like to experiment more with the n
After you press ctrl+z (putting the current task to sleep) you can run the command bg
in the terminal (stands for background) to let the latest task continue running in the background.
When you need to, run fg
to get back to the task.
To get the same result, you can add to your command &
at the end to start it in the background.