Tisamu
3/15/2018 - 5:52 AM

Jobs for logs

Get logs from a command into a file in background and manage it.

source: https://unix.stackexchange.com/a/106641

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.