Run command in background
# output stdout and stderr to the same file ./a.sh > somefile 2>&1 & # output stdout and stderr to separate files ./a.sh > stdoutfile 2> stderrfile &