Get logs from a command into a file in background and manage it.
some_cmd > some_file 2>&1 &
# and then you could throw the & on to send it to the background.
# Jobs can be accessed with the jobs command.
# jobs will show you the running jobs, and number them.
# You could then talk about the jobs using a % followed by the number like kill %1 or so.